From 7a0b446d571ad93839ce82823ec1be23d3da29d8 Mon Sep 17 00:00:00 2001 From: giladfuchs Date: Tue, 31 Oct 2023 12:13:52 +0200 Subject: [PATCH] allow unused cause I have problem in node modules --- .eslintrc.json | 2 +- tsconfig.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index 0ff8a35b..a4c92c75 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -23,7 +23,7 @@ "plugins": ["react", "@typescript-eslint"], "rules": { "@typescript-eslint/no-non-null-assertion": "off", - "@typescript-eslint/no-unused-vars": "error", + "@typescript-eslint/no-unused-vars": "off", "react/react-in-jsx-scope": "off", "prettier/prettier": [ "error", diff --git a/tsconfig.json b/tsconfig.json index 1e921a0a..0402b31f 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -9,7 +9,7 @@ "allowJs": false, "skipLibCheck": true, "esModuleInterop": true, - "noUnusedLocals": true, + "noUnusedLocals": false, "allowSyntheticDefaultImports": true, "strict": true, "forceConsistentCasingInFileNames": true,