Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
NebulaServices
GitHub Repository: NebulaServices/Nebula
Path: blob/main/biome.json
976 views
1
{
2
"$schema": "https://biomejs.dev/schemas/1.9.3/schema.json",
3
"files": {
4
"ignore": ["~/", "**/dist/**", ".github/**"],
5
"include": ["**/**", "server/**"]
6
},
7
"formatter": {
8
"indentStyle": "space",
9
"indentWidth": 4,
10
"lineWidth": 100,
11
"ignore": ["pnpm-lock.yaml", "package.json"]
12
},
13
"organizeImports": { "enabled": true },
14
"linter": { "enabled": false },
15
"javascript": {
16
"formatter": {
17
"trailingCommas": "none",
18
"quoteStyle": "double",
19
"semicolons": "always"
20
}
21
},
22
"json": {
23
"parser": {
24
"allowComments": true,
25
"allowTrailingCommas": true
26
},
27
"formatter": {
28
"indentStyle": "space",
29
"trailingCommas": "none"
30
}
31
}
32
}
33
34