Skip to content

Commit

Permalink
[eslint config] [base] revert breaking part of airbnb#1420
Browse files Browse the repository at this point in the history
I’ll re-enable it in the next major.
  • Loading branch information
ljharb authored and jaylaw81 committed Sep 19, 2017
1 parent 73e3cb9 commit 510ef19
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/eslint-config-airbnb-base/rules/variables.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ module.exports = {
'no-label-var': 'error',

// disallow specific globals
'no-restricted-globals': ['error'].concat(restrictedGlobals),
// TODO: enable, semver-major
'no-restricted-globals': ['off'].concat(restrictedGlobals),

// disallow declaration of variables already declared in the outer scope
'no-shadow': 'error',
Expand Down

0 comments on commit 510ef19

Please sign in to comment.