From 8b639908d93c9a94b14d1a54fc66aa1b8c116577 Mon Sep 17 00:00:00 2001 From: Ze-Zheng Wu Date: Fri, 8 Sep 2023 22:26:45 +0800 Subject: [PATCH] chore: configure eslint to ignore dist --- .eslintrc.cjs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.cjs b/.eslintrc.cjs index 25730a0c..4e365995 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -2,7 +2,7 @@ module.exports = { root: true, env: { node: true, - es2022: true, + es2022: true }, extends: [ 'plugin:vue/vue3-essential', @@ -10,6 +10,7 @@ module.exports = { '@vue/eslint-config-typescript', '@vue/eslint-config-prettier/skip-formatting' ], + ignore: ['dist'], parserOptions: { ecmaVersion: 11 }