Skip to content

Commit

Permalink
Loosen name pattern for unused arguments
Browse files Browse the repository at this point in the history
Fixes #11
  • Loading branch information
sindresorhus committed Aug 8, 2019
1 parent 3dd7f7a commit 5a5fbec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ module.exports = {
vars: 'all',
args: 'after-used',
ignoreRestSiblings: true,
argsIgnorePattern: '^_$',
argsIgnorePattern: '^_',
caughtErrors: 'all',
caughtErrorsIgnorePattern: '^_$'
}
Expand Down

0 comments on commit 5a5fbec

Please sign in to comment.