From 8b1c775178dc345293875e9a1fb5f28405645845 Mon Sep 17 00:00:00 2001 From: tnt group Date: Sat, 3 Sep 2022 16:44:35 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20eslint-plugin-vue=20v8.0+=20=E6=A8=A1?= =?UTF-8?q?=E5=BC=8F=E4=B8=8B=E7=BB=9F=E4=B8=80=E5=A4=84=E7=90=86=20lint?= =?UTF-8?q?=20=E6=8A=A5=20defineProps=20=E6=9C=AA=E5=AE=9A=E4=B9=89?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .eslintrc.js | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index 2b737770..d27e761e 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -9,16 +9,17 @@ module.exports = { sourceType: 'module', ecmaFeatures: { jsx: true, - tsx: true, - }, + tsx: true + } }, env: { node: true, + // The Follow config only works with eslint-plugin-vue v8.0.0+ + 'vue/setup-compiler-macros': true }, - extends: ["plugin:vue/vue3-essential", "eslint:recommended"], + extends: ['plugin:vue/vue3-essential', 'eslint:recommended'], rules: { - "no-console": process.env.NODE_ENV === "production" ? "warn" : "off", - "no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off", - }, -}; - + 'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off', + 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off' + } +}