|
4 | 4 | "project": "tsconfig.json"
|
5 | 5 | },
|
6 | 6 | "rules": {
|
7 |
| - "@typescript-eslint/no-unsafe-argument": 0 |
| 7 | + "@typescript-eslint/no-unsafe-argument": 0, |
| 8 | + "@typescript-eslint/no-unsafe-member-access": 0, |
| 9 | + "@typescript-eslint/no-unnecessary-type-assertion": 0, |
| 10 | + "@typescript-eslint/no-unsafe-assignment": 0, |
| 11 | + "@typescript-eslint/no-unsafe-return": ["warn"], |
| 12 | + "@typescript-eslint/no-unsafe-call" : ["warn"], |
| 13 | + "@typescript-eslint/restrict-template-expressions": ["warn"], |
| 14 | + "@typescript-eslint/no-misused-promises": ["warn"], |
| 15 | + "@typescript-eslint/ban-ts-comment": ["warn"], |
| 16 | + "@typescript-eslint/no-unused-vars": 0 |
8 | 17 | },
|
9 | 18 | "overrides": [
|
10 | 19 | {
|
11 | 20 | "files": ["test/**/*.ts"],
|
12 | 21 | "rules": {
|
13 | 22 | "@typescript-eslint/no-unsafe-member-access": 0,
|
14 |
| - "@typescript-eslint/no-unnecessary-type-assertion": 0 |
| 23 | + "@typescript-eslint/no-unnecessary-type-assertion": 0, |
| 24 | + "@typescript-eslint/no-unsafe-assignment": 0, |
| 25 | + "@typescript-eslint/no-unsafe-return": ["warn"], |
| 26 | + "@typescript-eslint/no-unsafe-call" : ["warn"], |
| 27 | + "@typescript-eslint/no-unused-vars": 0 |
15 | 28 | }
|
16 | 29 | }
|
17 | 30 | ]
|
|
0 commit comments