Ingore build directory while linting ui project (#7658)

pull/7668/head
John Niang 2025-08-04 12:02:07 +08:00 committed by GitHub
parent 5c781d46af
commit 1643e1de05
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 1 deletions

View File

@ -9,7 +9,12 @@ import pluginVue from "eslint-plugin-vue";
export default defineConfigWithVueTs(
{
name: "app/global-ignores",
ignores: ["**/dist/**", "**/node_modules/**", "packages/api-client/src/"],
ignores: [
"**/dist/**",
"**/node_modules/**",
"packages/api-client/src/",
"**/build/**",
],
},
pluginVue.configs["flat/recommended"],