Skip to content

Commit

Permalink
fix(eslint): Change no-unused-var from error to warning
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonardoGentile committed Aug 30, 2017
1 parent e0be9e6 commit 1f49708
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"strict": 0,
// Variables
"no-shadow": 0,
"no-unused-vars": [2, { "args": "none" }],
"no-unused-vars": [1, { "args": "none" }],
"no-use-before-define": 0,
// Style
"brace-style": [1, "stroustrup"],
Expand Down

0 comments on commit 1f49708

Please sign in to comment.