From 6e94ee1832b1252d84d0c683693d25d849467cfe Mon Sep 17 00:00:00 2001 From: "Rhys (SunburntRock89)" Date: Thu, 28 Jul 2022 02:08:52 +0100 Subject: [PATCH] Disable TS Incompatible rule --- .eslintrc.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index 2dc81ac9..8b264ebb 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -119,8 +119,8 @@ module.exports = { "prefer-template": "error", "rest-spread-spacing": "error", "template-curly-spacing": "error", - "no-console": "off", + "no-console": 0, "no-irregular-whitespace": ["error", { skipStrings: true, skipComments: true, skipTemplates: true }], - "no-unused-vars": "warn", + "no-unused-vars": 0, }, };