From 20febc74bb2308d488ded2c8ec1adfd2a9d71adb Mon Sep 17 00:00:00 2001 From: Fityan <63894003+fityannugroho@users.noreply.github.com> Date: Thu, 17 Oct 2024 22:29:55 +0700 Subject: [PATCH] chore: remove unused eslint and prettier config files --- .eslintrc.js | 25 ------------------------- .prettierrc | 4 ---- 2 files changed, 29 deletions(-) delete mode 100644 .eslintrc.js delete mode 100644 .prettierrc diff --git a/.eslintrc.js b/.eslintrc.js deleted file mode 100644 index 80d250a..0000000 --- a/.eslintrc.js +++ /dev/null @@ -1,25 +0,0 @@ -module.exports = { - parser: '@typescript-eslint/parser', - parserOptions: { - project: 'tsconfig.json', - sourceType: 'module', - }, - plugins: ['@typescript-eslint/eslint-plugin'], - extends: [ - 'plugin:@typescript-eslint/recommended', - 'plugin:@typescript-eslint/stylistic', - 'plugin:prettier/recommended', - ], - root: true, - env: { - node: true, - }, - ignorePatterns: ['node_modules', 'dist', '.eslintrc.js'], - rules: { - '@typescript-eslint/consistent-type-definitions': ['error', 'type'], - '@typescript-eslint/interface-name-prefix': 'off', - '@typescript-eslint/explicit-function-return-type': 'off', - '@typescript-eslint/explicit-module-boundary-types': 'off', - '@typescript-eslint/no-explicit-any': 'off', - }, -}; diff --git a/.prettierrc b/.prettierrc deleted file mode 100644 index dcb7279..0000000 --- a/.prettierrc +++ /dev/null @@ -1,4 +0,0 @@ -{ - "singleQuote": true, - "trailingComma": "all" -} \ No newline at end of file