biome.json
Raw
1{
2 "$schema": "https://biomejs.dev/schemas/2.4.7/schema.json",
3 "vcs": {
4 "enabled": true,
5 "clientKind": "git",
6 "useIgnoreFile": true
7 },
8 "files": {
9 "ignoreUnknown": true,
10 "includes": ["src/**"]
11 },
12 "formatter": {
13 "enabled": true,
14 "indentStyle": "space",
15 "indentWidth": 4
16 },
17 "linter": {
18 "enabled": true,
19 "rules": {
20 "recommended": true,
21 "style": {
22 "noNonNullAssertion": "off"
23 }
24 }
25 },
26 "javascript": {
27 "formatter": {
28 "quoteStyle": "double",
29 "trailingCommas": "all"
30 }
31 },
32 "assist": {
33 "enabled": true,
34 "actions": {
35 "source": {
36 "organizeImports": "on"
37 }
38 }
39 }
40}
41