Skip to content

Commit

Permalink
OR-2268 Make eslint to warn on unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
kscc25 committed May 18, 2016
1 parent fd9d411 commit da0b448
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@
"no-unmodified-loop-condition": "warn",
"no-unneeded-ternary": "off",
"no-unused-expressions": "off",
"no-unused-vars": ["off", {"args": "none" }],
"no-unused-vars": ["warn", { "vars": "all", "args": "all" }],
"no-use-before-define": ["warn", { "functions": false }],
"no-useless-call": "error",
"no-useless-concat": "error",
Expand Down

0 comments on commit da0b448

Please sign in to comment.