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 b184590 commit 66748b4Copy full SHA for 66748b4
index.js
@@ -49,6 +49,11 @@ module.exports = {
49
"no-redeclare": "off",
50
"@typescript-eslint/no-redeclare": ["error"],
51
52
+ // no-shadow - note you must disable the base rule as it can report incorrect errors
53
+ // https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-shadow.md
54
+ "no-shadow": "off",
55
+ "@typescript-eslint/no-shadow": ["error"],
56
+
57
'@typescript-eslint/prefer-enum-initializers': 'error',
58
59
// no-array-constructor - note you must disable the base rule as it can report incorrect errors
0 commit comments