Skip to content

Commit b47167d

Browse files
committed
chore: update lint config
1 parent b094f0e commit b47167d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

eslint.config.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -31,16 +31,16 @@ const eslintConfigPreferences = {
3131
},
3232
codeQuality: {
3333
rules: {
34-
"func-style": ["error", "declaration", { overrides: { namedExports: "ignore" } }],
34+
"func-style": ["error", "declaration", { overrides: { namedExports: "declaration" } }],
3535
"no-console": "off",
3636
"radix": ["error", "always"],
37-
"no-shadow": ["error", { builtinGlobals: true }],
37+
"no-shadow": ["error", { builtinGlobals: true, ignoreOnInitialization: true }],
3838
"no-negated-condition": "error",
3939
"no-unneeded-ternary": ["error", { defaultAssignment: true }],
4040
"no-nested-ternary": "error",
4141
"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"],
4444
"require-await": "error",
4545
"strict": ["error", "global"],
4646
"yoda": "error",

0 commit comments

Comments
 (0)