|
1 | 1 | {
|
2 | 2 | "extends": [
|
3 |
| - "plugin:import/typescript", |
4 | 3 | "prettier",
|
5 | 4 | "prettier/@typescript-eslint"
|
6 | 5 | ],
|
7 |
| - "plugins": ["@typescript-eslint", "import", "prettier"], |
| 6 | + "plugins": ["@typescript-eslint", "prettier"], |
8 | 7 | "parser": "@typescript-eslint/parser",
|
9 | 8 | "parserOptions": {
|
10 | 9 | "sourceType": "module",
|
|
19 | 18 | "mocha": true,
|
20 | 19 | "node": true
|
21 | 20 | },
|
22 |
| - "settings": { |
23 |
| - "import/extensions": [".js", ".ts"], |
24 |
| - "import/resolver": { |
25 |
| - "typescript": { |
26 |
| - "project": ["./tsconfig.json"] |
27 |
| - } |
28 |
| - } |
29 |
| - }, |
30 | 21 | "rules": {
|
31 | 22 | "@typescript-eslint/no-unused-vars": [
|
32 | 23 | "error",
|
|
35 | 26 | "constructor-super": "error",
|
36 | 27 | "dot-notation": ["error", { "allowKeywords": true }],
|
37 | 28 | "eqeqeq": ["error", "smart"],
|
38 |
| - "import/default": "error", |
39 |
| - "import/export": "error", |
40 |
| - "import/first": "error", |
41 |
| - "import/named": "error", |
42 |
| - "import/namespace": "error", |
43 |
| - "import/newline-after-import": "error", |
44 |
| - "import/no-deprecated": "error", |
45 |
| - "import/no-extraneous-dependencies": [ |
46 |
| - "error", |
47 |
| - { "peerDependencies": true } |
48 |
| - ], |
49 |
| - "import/no-mutable-exports": "error", |
50 |
| - "import/no-named-as-default": "error", |
51 |
| - "import/no-named-as-default-member": "error", |
52 |
| - "import/no-unresolved": "error", |
53 | 29 | "linebreak-style": "error",
|
54 | 30 | "new-parens": "error",
|
55 | 31 | "no-array-constructor": "error",
|
|
0 commit comments