We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a71e849 commit b184590Copy full SHA for b184590
index.js
@@ -43,6 +43,12 @@ module.exports = {
43
'@typescript-eslint/no-dynamic-delete': 'error',
44
45
// https://github.com/typescript-eslint/typescript-eslint/blob/v4.0.1/packages/eslint-plugin/docs/rules/prefer-enum-initializers.md
46
+
47
+ // no-redeclare - note you must disable the base rule as it can report incorrect errors
48
+ // https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-redeclare.md
49
+ "no-redeclare": "off",
50
+ "@typescript-eslint/no-redeclare": ["error"],
51
52
'@typescript-eslint/prefer-enum-initializers': 'error',
53
54
// no-array-constructor - note you must disable the base rule as it can report incorrect errors
0 commit comments