@@ -6,20 +6,20 @@ const config = createConfig('eslint', {
6
6
'import/no-named-as-default-member' : 'off' ,
7
7
'import/no-import-module-exports' : 'off' ,
8
8
'import/no-self-import' : 'off' ,
9
- 'spaced-comment' : [ 'error' , 'always' , { ' block' : { ' exceptions' : [ '*' ] } } ] ,
9
+ 'spaced-comment' : [ 'error' , 'always' , { block : { exceptions : [ '*' ] } } ] ,
10
10
'react-hooks/rules-of-hooks' : 'off' ,
11
- " react/forbid-prop-types" : [ " error" , { " forbid" : [ " any" , " array" ] } ] , // arguable object proptype is use when I do not care about the shape of the object
11
+ ' react/forbid-prop-types' : [ ' error' , { forbid : [ ' any' , ' array' ] } ] , // arguable object proptype is use when I do not care about the shape of the object
12
12
'no-import-assign' : 'off' ,
13
13
'no-promise-executor-return' : 'off' ,
14
14
'import/no-cycle' : 'off' ,
15
15
} ,
16
16
} ) ;
17
17
18
18
config . settings = {
19
- " import/resolver" : {
19
+ ' import/resolver' : {
20
20
node : {
21
- paths : [ " src" , " node_modules" ] ,
22
- extensions : [ " .js" , " .jsx" ] ,
21
+ paths : [ ' src' , ' node_modules' ] ,
22
+ extensions : [ ' .js' , ' .jsx' ] ,
23
23
} ,
24
24
} ,
25
25
} ;
0 commit comments