From b9a5d7f1e85aa3fbf13361b7ef578ce2ad719ef7 Mon Sep 17 00:00:00 2001 From: Alfred Melch Date: Sat, 1 Feb 2020 09:23:51 +0100 Subject: [PATCH] warn about console logging --- .eslintrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc b/.eslintrc index 6c0ab87..7cf3e37 100644 --- a/.eslintrc +++ b/.eslintrc @@ -1,3 +1,4 @@ { - "extends": ["react-app", "prettier"] + "extends": ["react-app", "prettier"], + "rules": { "no-console": "warn" } }