diff --git a/.eslintrc.json b/.eslintrc.json deleted file mode 100644 index 0b762e27..00000000 --- a/.eslintrc.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "root": true, - "parser": "@typescript-eslint/parser", - "plugins": ["@typescript-eslint"], - "extends": [ - "eslint:recommended", - "plugin:import/recommended", - "plugin:sort-export-all/recommended", - "plugin:@typescript-eslint/recommended" - ], - "rules": { - "import/order": ["error", { "alphabetize": { "order": "asc" } }], - "import/first": "error", - "import/no-mutable-exports": "error", - "import/no-unresolved": "off", - "@typescript-eslint/array-type": ["error", { "default": "array" }], - "@typescript-eslint/naming-convention": [ - "error", - { - "selector": "default", - "format": ["camelCase", "UPPER_CASE", "PascalCase"], - "leadingUnderscore": "allow" - } - ], - "@typescript-eslint/ban-ts-comment": "off" - }, - "ignorePatterns": ["__fixtures__"] -}