chore(web): ignore stale .js emit artifacts in test/ and src/

This commit is contained in:
2026-04-29 10:19:00 +08:00
parent 9e3b745da3
commit b7b9532a5a
2 changed files with 10 additions and 1 deletions
+2
View File
@@ -18,6 +18,8 @@ coverage.html
/web/*.d.ts
/web/src/**/*.js
/web/src/**/*.d.ts
/web/test/**/*.js
/web/test/**/*.d.ts
# Editor
.idea/
+8 -1
View File
@@ -8,7 +8,14 @@ import vueParser from 'vue-eslint-parser'
export default [
{
ignores: ['dist/**', 'node_modules/**', '**/*.d.ts', 'src/**/*.js', 'vite.config.js'],
ignores: [
'dist/**',
'node_modules/**',
'**/*.d.ts',
'src/**/*.js',
'test/**/*.js',
'vite.config.js',
],
},
js.configs.recommended,
...tseslint.configs.recommended,