-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbiome.json
More file actions
32 lines (32 loc) · 981 Bytes
/
Copy pathbiome.json
File metadata and controls
32 lines (32 loc) · 981 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"$schema": "https://biomejs.dev/schemas/2.4.15/schema.json",
"vcs": { "enabled": true, "clientKind": "git", "useIgnoreFile": true },
"files": {
"ignoreUnknown": true,
"includes": [
"**",
"!**/dist",
"!**/node_modules",
"!**/user-data",
"!**/.claude/worktrees",
"user-data/scripts/**/*.ts",
"!user-data/scripts/**/fixtures"
]
},
"formatter": { "indentStyle": "space", "indentWidth": 2, "lineWidth": 100 },
"javascript": { "formatter": { "quoteStyle": "single", "semicolons": "always" } },
"linter": {
"enabled": true,
"rules": { "recommended": true, "suspicious": { "noConsole": "warn" } }
},
"overrides": [
{
"includes": ["**/*.test.ts"],
"linter": { "rules": { "style": { "noNonNullAssertion": "off" } } }
},
{
"includes": ["scripts/**", "system/scripts/**", "system/surfaces/cli/**"],
"linter": { "rules": { "suspicious": { "noConsole": "off" } } }
}
]
}