@@ -3,26 +3,27 @@ module.exports = {
3
3
plugins : [ '@typescript-eslint' ] ,
4
4
extends : [
5
5
'plugin:@typescript-eslint/recommended' ,
6
- 'plugin:react/recommended'
6
+ 'plugin:react/recommended' ,
7
7
] ,
8
8
settings : {
9
9
react : {
10
- version : 'detect'
11
- }
10
+ version : 'detect' ,
11
+ } ,
12
12
} ,
13
13
rules : {
14
14
indent : 'off' ,
15
15
'@typescript-eslint/indent' : 'off' ,
16
16
'@typescript-eslint/camelcase' : 'off' ,
17
17
'@typescript-eslint/no-use-before-define' : 'off' ,
18
18
'@typescript-eslint/explicit-function-return-type' : 'off' ,
19
- '@typescript-eslint/member-delimiter-style' : 0 ,
20
- '@typescript-eslint/no-non-null-assertion' : 0 ,
21
- '@typescript-eslint/no-explicit-any' : 0 ,
22
- '@typescript-eslint/explicit-member-accessibility' : 0 ,
23
- '@typescript-eslint/no-object-literal-type-assertion' : 0 ,
24
- '@typescript-eslint/array-type' : 0 ,
25
- '@typescript-eslint/explicit-member-accessibility' : 0 ,
26
- '@typescript-eslint/no-parameter-properties' : 0
27
- }
19
+ '@typescript-eslint/member-delimiter-style' : 'off' ,
20
+ '@typescript-eslint/no-non-null-assertion' : 'off' ,
21
+ '@typescript-eslint/no-explicit-any' : 'off' ,
22
+ '@typescript-eslint/explicit-member-accessibility' : 'off' ,
23
+ '@typescript-eslint/no-object-literal-type-assertion' : 'off' ,
24
+ '@typescript-eslint/array-type' : 'off' ,
25
+ '@typescript-eslint/explicit-member-accessibility' : 'off' ,
26
+ '@typescript-eslint/no-parameter-properties' : 'off' ,
27
+ '@typescript-eslint/ban-ts-ignore' : 'off' ,
28
+ } ,
28
29
}
0 commit comments