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 cdc1c4f commit b4995b6Copy full SHA for b4995b6
packages/eslint-config-airbnb-base/rules/variables.js
@@ -16,7 +16,8 @@ module.exports = {
16
'no-label-var': 'error',
17
18
// disallow specific globals
19
- 'no-restricted-globals': ['error'].concat(restrictedGlobals),
+ // TODO: enable, semver-major
20
+ 'no-restricted-globals': ['off'].concat(restrictedGlobals),
21
22
// disallow declaration of variables already declared in the outer scope
23
'no-shadow': 'error',
0 commit comments