From 239fbc24a68f94efef28cf6631f146ae2e8b982d Mon Sep 17 00:00:00 2001 From: "mr. M" Date: Thu, 31 Oct 2024 08:58:52 +0100 Subject: [PATCH] Update unused-imports rule to warn instead of error in .eslintrc.json --- .eslintrc.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 7dd90fe..2dcd59d 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -4,6 +4,6 @@ "rules": { "react/display-name": "off", "react/no-unescaped-entities": "off", - "unused-imports/no-unused-imports": "error" + "unused-imports/no-unused-imports": "warn" } }