1
1
module . exports = {
2
2
parser : '@typescript-eslint/parser' ,
3
3
parserOptions : {
4
- project : [ './tsconfig.src.json' , './tests/tsconfig.test .json' ] ,
4
+ project : [ './tsconfig.src.json' , './tests/tsconfig.spec .json' ] ,
5
5
tsconfigRootDir : __dirname ,
6
6
sourceType : 'module' ,
7
7
} ,
8
- plugins : [ '@typescript-eslint' , 'jest' ] ,
8
+ plugins : [ '@typescript-eslint' ] ,
9
9
extends : [
10
10
'eslint:recommended' ,
11
11
'plugin:@typescript-eslint/recommended' ,
@@ -18,6 +18,13 @@ module.exports = {
18
18
mongo : true ,
19
19
} ,
20
20
rules : {
21
+ '@typescript-eslint/no-explicit-any' : 'off' ,
22
+ '@typescript-eslint/no-unsafe-assignment' : 'off' ,
23
+ '@typescript-eslint/no-unsafe-member-access' : 'off' ,
24
+ '@typescript-eslint/no-unsafe-return' : 'off' ,
25
+ '@typescript-eslint/no-unsafe-call' : 'off' ,
26
+ '@typescript-eslint/no-unsafe-return' : 'off' ,
27
+ '@typescript-eslint/no-unsafe-argument' : 'off' ,
21
28
'@typescript-eslint/no-misused-promises' : 'off' ,
22
29
'@typescript-eslint/restrict-template-expressions' : 'off' ,
23
30
'@typescript-eslint/no-floating-promises' : 'off' ,
@@ -28,10 +35,5 @@ module.exports = {
28
35
ignoreStatic : true ,
29
36
} ,
30
37
] ,
31
- 'jest/no-disabled-tests' : 'warn' ,
32
- 'jest/no-focused-tests' : 'error' ,
33
- 'jest/no-identical-title' : 'error' ,
34
- 'jest/prefer-to-have-length' : 'warn' ,
35
- 'jest/valid-expect' : 'error' ,
36
38
} ,
37
39
}
0 commit comments