From 7ce9aac9cb3935b9e5fc5227d1e1110a0233644e Mon Sep 17 00:00:00 2001 From: Alfred Melch Date: Fri, 13 Mar 2020 11:49:27 +0100 Subject: [PATCH] allow console errors and warnings --- .eslintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc b/.eslintrc index 7cf3e37..ac4361a 100644 --- a/.eslintrc +++ b/.eslintrc @@ -1,4 +1,4 @@ { "extends": ["react-app", "prettier"], - "rules": { "no-console": "warn" } + "rules": { "no-console": ["warn", "allow": ["warn", "error"]] } }