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 0808672 commit 5b83c73Copy full SHA for 5b83c73
eslint.config.mjs
@@ -228,6 +228,7 @@ export default [
228
...noRestrictedSyntaxCommonLib,
229
],
230
'no-self-compare': 'error',
231
+ 'no-shadow-restricted-names': ['error', { reportGlobalThis: false }],
232
'no-template-curly-in-string': 'error',
233
'no-throw-literal': 'error',
234
'no-undef': ['error', { typeof: true }],
@@ -255,7 +256,6 @@ export default [
255
256
257
// ESLint recommended rules that we disable.
258
'no-inner-declarations': 'off',
- 'no-shadow-restricted-names': 'off',
259
'no-useless-assignment': 'off',
260
261
// JSDoc rules.
0 commit comments