From 5ea436e959d7337c5a0173d52e872341281285c7 Mon Sep 17 00:00:00 2001 From: Marius Riedl Date: Wed, 3 Nov 2021 17:12:11 +0100 Subject: [PATCH] Disable eslint rules --- .eslintrc.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.eslintrc.js b/.eslintrc.js index 95800e3..73fc135 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -16,5 +16,7 @@ module.exports = { rules: { "no-console": process.env.NODE_ENV === "production" ? "warn" : "off", "no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-non-null-assertion": "off", }, }; -- 2.44.0