From f1eaf3e019db055ca06e831df8b706b392d9dddc Mon Sep 17 00:00:00 2001 From: Kevin Midboe Date: Fri, 19 Aug 2022 16:05:16 +0200 Subject: [PATCH] Set 2 eslint rules as warning temporarly --- .eslintrc.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index e64f9ff..157265e 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -6,13 +6,15 @@ }, "extends": ["eslint-config-airbnb-base", "plugin:prettier/recommended"], "rules": { + "max-classes-per-file": 1, "no-empty": [ 2, { "allowEmptyCatch": true } ], - "no-underscore-dangle": "off", - "no-shadow": "off" + "no-promise-executor-return": 1, + "no-shadow": "off", + "no-underscore-dangle": "off" } }