|
1 | 1 | module.exports = {
|
2 | 2 | parser: "@typescript-eslint/parser",
|
3 | 3 | plugins: ["@typescript-eslint"],
|
4 |
| - extends: ["plugin:@typescript-eslint/recommended"], |
| 4 | + extends: [ |
| 5 | + "plugin:@typescript-eslint/recommended", |
| 6 | + "plugin:@typescript-eslint/stylistic", |
| 7 | + ], |
5 | 8 | // It's 5〜10x slower with the project setting.
|
6 | 9 | // So We disable it until the issue has been fixed
|
7 | 10 | /*
|
@@ -36,5 +39,26 @@ module.exports = {
|
36 | 39 | // which means these can be checked without parserOptions.project
|
37 | 40 | // "@typescript-eslint/no-for-in-array": "error",
|
38 | 41 | // "@typescript-eslint/no-unnecessary-type-assertion": "warn",
|
| 42 | + |
| 43 | + // These rules are temporarily set to maintain compatibility with v5. |
| 44 | + // To delete as appropriate when reviewing the adaptation rules again. |
| 45 | + // rules removed from `recommended` in v6 |
| 46 | + "no-extra-semi": "off", |
| 47 | + "@typescript-eslint/no-extra-semi": "error", |
| 48 | + // rules moved to `strict` in v6 |
| 49 | + "@typescript-eslint/no-non-null-assertion": "warn", |
| 50 | + // rules added to `recommended` in v6 |
| 51 | + "@typescript-eslint/no-duplicate-enum-values": "off", |
| 52 | + "@typescript-eslint/no-unsafe-declaration-merging": "off", |
| 53 | + // `stylistic` rules not moved from v5 `recommended` |
| 54 | + "@typescript-eslint/ban-tslint-comment": "off", |
| 55 | + "@typescript-eslint/class-literal-property-style": "off", |
| 56 | + "@typescript-eslint/consistent-generic-constructors": "off", |
| 57 | + "@typescript-eslint/consistent-indexed-object-style": "off", |
| 58 | + "@typescript-eslint/consistent-type-assertions": "off", |
| 59 | + "@typescript-eslint/consistent-type-definitions": "off", |
| 60 | + "@typescript-eslint/no-confusing-non-null-assertion": "off", |
| 61 | + "@typescript-eslint/prefer-for-of": "off", |
| 62 | + "@typescript-eslint/prefer-function-type": "off", |
39 | 63 | },
|
40 | 64 | };
|
0 commit comments