Skip to content

Commit b881b83

Browse files
author
Umutcan ÖNER
committed
fix: add dist directories to biome ignore list
- Prevents linting of generated files in dist directories - Fixes build failures on PRs to main branch - Also ignores other build output directories
1 parent 9bf5183 commit b881b83

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

biome.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
{
22
"$schema": "https://biomejs.dev/schemas/2.0.5/schema.json",
33
"files": {
4-
"ignoreUnknown": false
4+
"ignoreUnknown": false,
5+
"ignore": [
6+
"**/dist",
7+
"**/build",
8+
"**/.next",
9+
"**/out",
10+
"**/coverage",
11+
"**/node_modules",
12+
"**/.turbo"
13+
]
514
},
615
"linter": {
716
"enabled": true,

0 commit comments

Comments
 (0)