We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
antfu
Learn more about funding links in repositories.
Report abuse
no-invalid-this
1 parent e28861a commit ff74d69Copy full SHA for ff74d69
packages/eslint-config-basic/index.js
@@ -310,6 +310,7 @@ module.exports = {
310
'no-with': 'error',
311
'no-void': 'error',
312
'no-useless-escape': 'off',
313
+ 'no-invalid-this': 'error',
314
'vars-on-top': 'error',
315
'require-await': 'off',
316
'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