From 2b0fe7128325fedcd7053dad69e40d5f70165f87 Mon Sep 17 00:00:00 2001 From: Seven Date: Thu, 11 Dec 2025 03:36:18 +0700 Subject: [PATCH] =?UTF-8?q?chore:=20=E6=9B=B4=E6=96=B0=20ESLint=20?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=EF=BC=8C=E7=A6=81=E7=94=A8=E6=9C=AA=E4=BD=BF?= =?UTF-8?q?=E7=94=A8=E5=8F=98=E9=87=8F=E5=92=8C=E5=AF=BC=E5=85=A5=E7=9A=84?= =?UTF-8?q?=E8=A7=84=E5=88=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- eslint.config.mjs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/eslint.config.mjs b/eslint.config.mjs index ebf6943..443ec25 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -24,6 +24,9 @@ export default antfu({ ecmaVersion: 2020, }, rules: { + "no-unused-vars": "off", + "unused-imports/no-unused-vars": "off", + "unused-imports/no-unused-imports": "off", "no-console": process.env.NODE_ENV === "production" ? "warn" : "off", "no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off", "vue/no-deprecated-slot-attribute": "off",