From daf7a05d5c070ca790ec20585a1c0ed5a0ae5c8c Mon Sep 17 00:00:00 2001 From: Xaver Maierhofer Date: Wed, 22 Jun 2016 02:55:36 +0200 Subject: [PATCH] [TASK] Eslint - console.log replace error with warning Error stops build and log can be useful in development --- .eslintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc b/.eslintrc index f0764d2..0f6064d 100644 --- a/.eslintrc +++ b/.eslintrc @@ -5,4 +5,4 @@ rules: "semi": ["error", "always"] "no-undef": 0 - "no-console": ["error", { allow: ["warn", "error"] }] + "no-console": ["warn", { allow: ["warn", "error"] }]