-
-
Notifications
You must be signed in to change notification settings - Fork 186
/
Copy pathbiome.jsonc
52 lines (52 loc) · 1.7 KB
/
biome.jsonc
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"files": {
"ignore": [
"node_modules/**",
"jsapp/compiled/**",
"*.css",
"*.min.js",
"*-min.js",
"bootstrap*.js",
"jquery*.js",
"kobo/apps/openrosa/apps/logger/fixtures/*"
]
},
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true
},
"formatter": {
"enabled": true, // Default.
"formatWithErrors": false, // Default.
"ignore": [], // Default.
"attributePosition": "auto", // Default.
"indentStyle": "space", // Default is tab, we use space due imho the real standard.
"indentWidth": 2, // Default.
"lineWidth": 120, // Default is 80, we use 120 due wider monitors nowadays.
"lineEnding": "lf" // Default.
},
"javascript": {
"formatter": {
"arrowParentheses": "always", // Default.
"bracketSameLine": false, // Default.
"bracketSpacing": true, // Default.
"jsxQuoteStyle": "single", // Default is double, we use single for a cleaner look.
"quoteProperties": "asNeeded", // Default.
"semicolons": "asNeeded", // Default is always, we use asNeeded for a cleaner look.
"trailingCommas": "all", // Default
"attributePosition": "auto", // Default.
"quoteStyle": "single" // Default is double, we use single for a cleaner look.
}
},
"organizeImports": {
"enabled": false // TODO: depends on standardized `#jsapp/*` internal TS alias imports for import distance calculation.
},
"linter": {
"enabled": false, // TODO: for later.
"rules": {
"recommended": false // Workaround: see https://github.com/biomejs/biome-vscode/issues/491#issuecomment-2643675948
}
}
}