We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cc95bf commit eaa92acCopy full SHA for eaa92ac
src/configs/typescript.ts
@@ -16,6 +16,7 @@ const baseConfig: Linter.Config = {
16
"no-extra-parens": "off",
17
"no-loop-func": "off",
18
"no-loss-of-precision": "off",
19
+ "no-redeclare": "off",
20
"no-shadow": "off",
21
"no-unused-expressions": "off",
22
"no-unused-vars": "off",
src/plugins/typescript.ts
@@ -221,5 +221,6 @@ export const settings: Linter.Config = {
221
},
222
],
223
"@typescript-eslint/unified-signatures": "warn",
224
+ "@typescript-eslint/no-redeclare": "error",
225
226
};
0 commit comments