Skip to content

Commit

Permalink
fix(config): yell for unused args if not explicitely stated
Browse files Browse the repository at this point in the history
  • Loading branch information
dackmin committed Jun 9, 2020
1 parent 9783a72 commit 69c889d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/eslint-config/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ module.exports = {
semi: [ERROR, 'always'],
'no-unused-vars': [WARNING, {
varsIgnorePattern: '^_',
argsIgnorePattern: '.+',
argsIgnorePattern: '^_',
}],
'no-multiple-empty-lines': WARNING,
'eol-last': OFF,
Expand Down

0 comments on commit 69c889d

Please sign in to comment.