We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d853854 commit 400d52eCopy full SHA for 400d52e
packages/eslint-config-basic/index.js
@@ -308,6 +308,7 @@ module.exports = {
308
"no-with": "error",
309
"no-void": "error",
310
"no-useless-escape": "error",
311
+ "no-invalid-this": "error",
312
"vars-on-top": "error",
313
"require-await": "off",
314
"no-return-assign": "off",
packages/eslint-config-ts/index.js
@@ -114,6 +114,8 @@ module.exports = {
114
],
115
offsetTernaryExpressions: true,
116
}],
117
+ "no-invalid-this": "off",
118
+ "@typescript-eslint/no-invalid-this": "error",
119
"no-redeclare": "off",
120
"@typescript-eslint/no-redeclare": "error",
121
"no-use-before-define": "off",
0 commit comments