Skip to content

Commit

Permalink
Ignore no-unused-vars in args
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyriar committed Aug 23, 2023
1 parent b6fd7a2 commit ebd4092
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,10 @@
],
"no-trailing-spaces": "warn",
"no-unsafe-finally": "warn",
"no-unused-vars": ["warn", { "vars": "all" }],
"no-unused-vars": ["warn", {
"vars": "all",
"args": "none"
}],
"no-var": "warn",
"one-var": [
"warn",
Expand Down

0 comments on commit ebd4092

Please sign in to comment.