-
-
Notifications
You must be signed in to change notification settings - Fork 973
Expand file tree
/
Copy pathbiome.jsonc
More file actions
31 lines (30 loc) · 726 Bytes
/
Copy pathbiome.jsonc
File metadata and controls
31 lines (30 loc) · 726 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
{
"$schema": "https://biomejs.dev/schemas/2.4.10/schema.json",
"formatter": {
"indentStyle": "space",
"indentWidth": 2
},
"files": {
"includes": [
"**",
"!**/dist",
"!**/dist-node",
// We have to ignore this file because node 18 requires the "assert { type:
// 'json' }" syntax which is not supported by Biome's parser yet.
"!examples/node-esmodules/package.mjs"
]
},
"javascript": {
"formatter": {
"quoteStyle": "single",
"trailingCommas": "all"
}
},
"linter": {
"rules": {
"a11y": { "useHtmlLang": "off" },
"complexity": { "useArrowFunction": "off" },
"suspicious": { "noAssignInExpressions": "off" }
}
}
}