From e72c58373db014e400b13134b74177501017589e Mon Sep 17 00:00:00 2001 From: hyeonsu Date: Tue, 26 Aug 2025 17:21:27 +0900 Subject: [PATCH] =?UTF-8?q?=EC=9E=90=EB=B0=94=EC=8A=A4=ED=81=AC=EB=A6=BD?= =?UTF-8?q?=ED=8A=B8=EC=9A=A9=20no-unused-vars=20=EA=B7=9C=EC=B9=99=20?= =?UTF-8?q?=EB=81=84=EA=B8=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/eslint.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/eslint.config.mjs b/frontend/eslint.config.mjs index 3e63a960..4c35d9c3 100644 --- a/frontend/eslint.config.mjs +++ b/frontend/eslint.config.mjs @@ -24,7 +24,7 @@ const eslintConfig = [ "react/no-unescaped-entities": "warn", // 기타 자주 발생하는 오류들을 경고로 변경 "prefer-const": "warn", - "no-unused-vars": "warn", + "no-unused-vars": "off", // TypeScript에서는 @typescript-eslint/no-unused-vars 사용 // Prettier와 일치하는 quote 규칙 quotes: ["warn", "double", { avoidEscape: true }], semi: ["warn", "always"],