@@ -16,7 +16,7 @@ module.exports = {
16
16
plugins : [ '@typescript-eslint' , 'import' ] ,
17
17
extends : [
18
18
'eslint-config-airbnb-base' ,
19
- 'plugin:@typescript-eslint/recommended'
19
+ 'plugin:@typescript-eslint/recommended' ,
20
20
] ,
21
21
rules : {
22
22
'no-nested-ternary' : [ 0 ] ,
@@ -26,18 +26,18 @@ module.exports = {
26
26
'import/no-extraneous-dependencies' : [ 0 ] ,
27
27
'consistent-return' : [ 0 ] ,
28
28
'no-bitwise' : [ 0 ] ,
29
- 'prefer-destructuring' : [ 2 , { ' array' : false } ] ,
30
- 'import/extensions' : [ 2 , 'ignorePackages' , { ts : 'never' } ] ,
29
+ 'prefer-destructuring' : [ 2 , { array : false } ] ,
30
+ 'import/extensions' : [ 0 ] ,
31
31
'@typescript-eslint/ban-ts-comment' : [ 0 ] ,
32
32
'@typescript-eslint/explicit-module-boundary-types' : [ 0 ] ,
33
33
'@typescript-eslint/no-explicit-any' : [ 0 ] ,
34
- '@typescript-eslint/no-non-null-assertion' : [ 0 ]
34
+ '@typescript-eslint/no-non-null-assertion' : [ 0 ] ,
35
35
} ,
36
36
settings : {
37
37
'import/resolver' : {
38
38
node : {
39
- extensions : [ '.js' , '.jsx' , '.ts' , '.tsx' ]
40
- }
41
- }
42
- }
39
+ extensions : [ '.js' , '.jsx' , '.ts' , '.tsx' ] ,
40
+ } ,
41
+ } ,
42
+ } ,
43
43
} ;
0 commit comments