-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbiome.jsonc
63 lines (63 loc) · 1.31 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
53
54
55
56
57
58
59
60
61
62
63
{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"files": {
"ignore": ["**/*.min.css", "**/*.min.css.map"],
"ignoreUnknown": false
},
"vcs": {
"enabled": true,
"clientKind": "git",
"defaultBranch": "main",
"useIgnoreFile": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true
}
},
"formatter": {
"enabled": true,
"formatWithErrors": true,
/* This is a bit of an annoying reason, but when changesets are applied it updates package.json
files and arrays get formatted as multi-line. Biome disagrees with this as it decides on single
vs multiline based on the `lineWidth` setting, but you can't disable that setting in isolation.
So formatting is disabled entirely for package.json files until there is time to find a better
solution. */
"ignore": ["**/package.json"],
"indentStyle": "tab",
"indentWidth": 2,
"lineEnding": "lf",
"lineWidth": 120,
"useEditorconfig": true
},
"organizeImports": {
"enabled": true
},
"javascript": {
"linter": {
"enabled": true
},
"formatter": {
"enabled": true,
"semicolons": "asNeeded",
"trailingCommas": "none"
}
},
"json": {
"linter": {
"enabled": true
},
"formatter": {
"enabled": true
}
},
"css": {
"linter": {
"enabled": true
},
"formatter": {
"enabled": true
}
}
}