From 8fadb703a8653a58617640a794e46c70295d0eed Mon Sep 17 00:00:00 2001 From: Calli Date: Mon, 2 Oct 2023 13:29:53 +0300 Subject: [PATCH] Remove few rules from eslint --- .eslintrc.json | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index 3a79716..eb0d235 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -16,12 +16,10 @@ "jsx": true } }, - "plugins": [ - "react", - "react-hooks" - ], + "plugins": ["react", "react-hooks"], "rules": { "react/react-in-jsx-scope": "off", - "react/jsx-uses-react": "off" + "react/jsx-uses-react": "off", + "no-unused-vars": "off" } }