|
12 | 12 | "globals": { |
13 | 13 | "globalThis": false |
14 | 14 | }, |
| 15 | + "reportUnusedDisableDirectives": true, |
15 | 16 | "rules": { |
16 | 17 | "class-methods-use-this": "off", |
17 | 18 | "consistent-return": "off", |
|
30 | 31 | "no-object-constructor": "error", |
31 | 32 | "no-param-reassign": "off", |
32 | 33 | "no-plusplus": "off", |
33 | | - "no-restricted-syntax": "off", |
| 34 | + "no-restricted-syntax": ["error", "LabeledStatement", "WithStatement"], |
34 | 35 | "no-return-assign": "off", |
35 | 36 | "no-shadow": "off", |
36 | 37 | "no-throw-literal": "off", |
|
42 | 43 | "prefer-rest-params": "off", |
43 | 44 | "prefer-promise-reject-errors": "off", |
44 | 45 | "import/extensions": ["error", "always"], |
45 | | - "import/no-cycle": "off", |
46 | 46 | "import/no-extraneous-dependencies": "off", |
47 | 47 | "import/prefer-default-export": "off" |
48 | 48 | }, |
|
53 | 53 | "rules": { |
54 | 54 | "@typescript-eslint/no-shadow": "off", |
55 | 55 | "@typescript-eslint/no-unused-expressions": "off", |
| 56 | + "@typescript-eslint/no-use-before-define": "off", |
56 | 57 | "import/extensions": ["error", "always"], |
57 | 58 | "import/no-cycle": "off" |
58 | 59 | } |
|
0 commit comments