@@ -31,16 +31,16 @@ const eslintConfigPreferences = {
31
31
} ,
32
32
codeQuality : {
33
33
rules : {
34
- "func-style" : [ "error" , "declaration" , { overrides : { namedExports : "ignore " } } ] ,
34
+ "func-style" : [ "error" , "declaration" , { overrides : { namedExports : "declaration " } } ] ,
35
35
"no-console" : "off" ,
36
36
"radix" : [ "error" , "always" ] ,
37
- "no-shadow" : [ "error" , { builtinGlobals : true } ] ,
37
+ "no-shadow" : [ "error" , { builtinGlobals : true , ignoreOnInitialization : true } ] ,
38
38
"no-negated-condition" : "error" ,
39
39
"no-unneeded-ternary" : [ "error" , { defaultAssignment : true } ] ,
40
40
"no-nested-ternary" : "error" ,
41
41
"no-var" : "error" ,
42
- "no-use-before-define" : [ "error" , { functions : false , classes : true , variables : true , allowNamedExports : false } ] ,
43
- "prefer-const" : [ "error" , { destructuring : "any" , ignoreReadBeforeAssign : false } ] ,
42
+ "no-use-before-define" : [ "error" , { functions : false } ] ,
43
+ "prefer-const" : [ "error" ] ,
44
44
"require-await" : "error" ,
45
45
"strict" : [ "error" , "global" ] ,
46
46
"yoda" : "error" ,
0 commit comments