Skip to content

Commit

Permalink
Make ES lint stop nagging about unused argument of catch statement
Browse files Browse the repository at this point in the history
  • Loading branch information
JustBlackBird committed Jun 8, 2016
1 parent ce3a59b commit a56e775
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/.eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"indent": ["error", 4, {"SwitchCase": 1}],
"no-trailing-spaces": "error",
"semi": ["error", "always"],
"guard-for-in": "error"
"guard-for-in": "error",
"no-unused-vars": ["error", {"caughtErrors": "none"}]
},
"globals": {
"Mibew": true,
Expand Down

0 comments on commit a56e775

Please sign in to comment.