|
19 | 19 | "extends": [
|
20 | 20 | "airbnb-base",
|
21 | 21 | "eslint:recommended",
|
22 |
| - "plugin:@typescript-eslint/eslint-recommended", |
| 22 | + "plugin:@typescript-eslint/strict", |
23 | 23 | "plugin:@typescript-eslint/recommended",
|
24 | 24 | "plugin:@typescript-eslint/recommended-requiring-type-checking",
|
25 |
| - "plugin:@typescript-eslint/strict", |
| 25 | + "plugin:@typescript-eslint/eslint-recommended", |
26 | 26 | "plugin:import/recommended",
|
27 | 27 | "plugin:promise/recommended"
|
28 | 28 | ],
|
29 | 29 | "rules": {
|
30 | 30 | "@typescript-eslint/ban-ts-comment":"off",
|
31 | 31 | "@typescript-eslint/dot-notation":"off",
|
32 | 32 | "@typescript-eslint/no-empty-interface":"off",
|
| 33 | + "@typescript-eslint/no-empty-object-type":"off", |
33 | 34 | "@typescript-eslint/no-inferrable-types":"off",
|
34 | 35 | "@typescript-eslint/no-misused-promises":"off",
|
| 36 | + "@typescript-eslint/no-require-imports":"off", |
35 | 37 | "@typescript-eslint/no-unnecessary-condition":"off",
|
| 38 | + "@typescript-eslint/no-unnecessary-type-assertion":"off", |
36 | 39 | "@typescript-eslint/no-unsafe-argument":"off",
|
37 | 40 | "@typescript-eslint/no-unsafe-assignment":"off",
|
38 | 41 | "@typescript-eslint/no-unsafe-call":"off",
|
39 | 42 | "@typescript-eslint/no-unsafe-member-access":"off",
|
40 | 43 | "@typescript-eslint/no-unsafe-return":"off",
|
41 |
| - "@typescript-eslint/no-require-imports":"off", |
42 |
| - "@typescript-eslint/no-empty-object-type":"off", |
43 | 44 | "@typescript-eslint/non-nullable-type-assertion-style":"off",
|
44 | 45 | "@typescript-eslint/prefer-for-of":"off",
|
45 | 46 | "@typescript-eslint/prefer-nullish-coalescing":"off",
|
|
163 | 164 | },
|
164 | 165 | "extends": []
|
165 | 166 | },
|
166 |
| - { |
167 |
| - "files": ["**/*.html"], |
168 |
| - "parserOptions": { "sourceType": "module", "ecmaVersion": "latest" }, |
169 |
| - "parser": "@html-eslint/parser", |
170 |
| - "plugins": ["html", "@html-eslint"], |
171 |
| - "env": { |
172 |
| - "browser": true, |
173 |
| - "commonjs": false, |
174 |
| - "node": false, |
175 |
| - "es2021": false |
176 |
| - }, |
177 |
| - "extends": ["plugin:@html-eslint/recommended"], |
178 |
| - "rules": { |
179 |
| - "@html-eslint/element-newline":"off", |
180 |
| - "@html-eslint/attrs-newline":"off", |
181 |
| - "@html-eslint/indent": ["error", 2] |
182 |
| - } |
183 |
| - }, |
184 | 167 | {
|
185 | 168 | "files": ["**/*.md"],
|
186 | 169 | "plugins": ["markdown"],
|
|
0 commit comments