Skip to content

Commit

Permalink
eslint: Remove unnecessary allowances from no-shadow rule
Browse files Browse the repository at this point in the history
  • Loading branch information
nwoltman committed Apr 6, 2018
1 parent 0073f53 commit b792fd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
"no-self-assign": 2,
"no-self-compare": 2,
"no-sequences": 2,
"no-shadow": [2, {"allow": ["err", "t", "opts", "next", "instance"], "builtinGlobals": true}],
"no-shadow": [2, {"allow": ["err", "t"], "builtinGlobals": true}],
"no-shadow-restricted-names": 2,
"no-sparse-arrays": 2,
"no-sync": [2, {"allowAtRootLevel": true}],
Expand Down

0 comments on commit b792fd0

Please sign in to comment.