Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
feat(base): allow unused var with rest
  • Loading branch information
samouss committed Jun 4, 2018
1 parent 18cdd23 commit b9c579a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rules/base.js
Expand Up @@ -120,7 +120,7 @@ module.exports = {
'no-shadow-restricted-names': ['error'],
'no-undef': ['error'],
'no-undefined': ['off'],
'no-unused-vars': ['error'],
'no-unused-vars': ['error', { ignoreRestSiblings: true }],
'no-use-before-define': ['error', { functions: false }],

// Node.js and Common.js
Expand Down

0 comments on commit b9c579a

Please sign in to comment.