Make ES lint stop nagging about unused argument of catch statement

This commit is contained in:
Dmitriy Simushev 2016-06-08 18:20:00 +00:00
parent ce3a59b13c
commit a56e775ab9

View File

@ -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,