Skip to content

Commit

Permalink
Ignore unused args that start with '_'
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan Reyes committed Jul 26, 2019
1 parent 5d1f99a commit 4b512eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .eslintrc
Expand Up @@ -34,7 +34,7 @@
"implicit-arrow-linebreak": "off",
"operator-linebreak": "off",
"class-methods-use-this": "off",
"no-unused-vars": [2, { "args": "after-used" }],
"no-unused-vars": ["error", { "argsIgnorePattern": "^_" }],
"default-case": "off"
}
}

0 comments on commit 4b512eb

Please sign in to comment.