Skip to content

Commit 7e27b79

Browse files
authored
chore: Ensure .nuxt folder is lint ignored & cleared (#14700)
Noticed that biome fix was failing on some stuff in the `.nuxt` folder in E2E tests, so figured to add this as well (and while at it, also ensure it is cleaned).
1 parent db33945 commit 7e27b79

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

biome.json

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,16 @@
3535
}
3636
},
3737
"ignore": [
38-
".vscode/*",
38+
".vscode",
3939
"**/*.json",
40-
".next/**/*",
41-
".svelte-kit/**/*",
4240
"**/fixtures/*/*.json",
4341
"**/*.min.js",
44-
".next/**",
45-
".svelte-kit/**",
46-
".angular/**",
42+
".next",
43+
".nuxt",
44+
".svelte-kit",
45+
".angular",
4746
"angular.json",
48-
"ember/instance-initializers/**",
47+
"ember/instance-initializers",
4948
"ember/types.d.ts",
5049
"solidstart/*.d.ts",
5150
"solidstart/client/",

dev-packages/e2e-tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"clean": "rimraf tmp node_modules && yarn clean:test-applications && yarn clean:pnpm",
1717
"ci:build-matrix": "ts-node ./lib/getTestMatrix.ts",
1818
"ci:build-matrix-optional": "ts-node ./lib/getTestMatrix.ts --optional=true",
19-
"clean:test-applications": "rimraf --glob test-applications/**/{node_modules,dist,build,.next,.sveltekit,pnpm-lock.yaml,.last-run.json,test-results}",
19+
"clean:test-applications": "rimraf --glob test-applications/**/{node_modules,dist,build,.next,.nuxt,.sveltekit,pnpm-lock.yaml,.last-run.json,test-results}",
2020
"clean:pnpm": "pnpm store prune"
2121
},
2222
"devDependencies": {

0 commit comments

Comments
 (0)