From a56e775ab9f4cc2839fa998473bed348b7b9a2f6 Mon Sep 17 00:00:00 2001 From: Dmitriy Simushev Date: Wed, 8 Jun 2016 18:20:00 +0000 Subject: [PATCH] Make ES lint stop nagging about unused argument of catch statement --- src/.eslintrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/.eslintrc b/src/.eslintrc index ab1fa90c..6b87b91f 100644 --- a/src/.eslintrc +++ b/src/.eslintrc @@ -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,