Skip to content

Commit

Permalink
fix no-unused-vars setting
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed Sep 27, 2022
1 parent 9307fb7 commit 44fe613
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ const base = {
'no-undef-init': ERROR,
// disallow declaration of variables that are not used in the code
'no-unused-vars': [ERROR, {
vars: 'local',
vars: 'all',
args: 'after-used',
ignoreRestSiblings: true,
}],
Expand Down

0 comments on commit 44fe613

Please sign in to comment.