Skip to content

Commit 160db52

Browse files
fix: exclude Musea art files from vize lint (#806)
Align vize lint targets with format by skipping *.art.vue files. This avoids false positives from vue/warn-custom-block when Vize 0.315+ flags Musea <art> custom blocks. Co-authored-by: Cursor Agent <cursoragent@cursor.com>
1 parent 52c3f80 commit 160db52

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

config/vite/tooling.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export const fmt = {
5757
export const runTasks = {
5858
lint: {
5959
command:
60-
'vp lint . --format stylish --max-warnings 0 && vize lint --help-level short --max-warnings 0 "src/**/*.vue"',
60+
"vp lint . --format stylish --max-warnings 0 && vize lint --help-level short --max-warnings 0 $(find src -name '*.vue' ! -name '*.art.vue')",
6161
},
6262
check: {
6363
command: "vp run lint && vp run format:check && vp run typecheck",

0 commit comments

Comments
 (0)