-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathbiome.json
More file actions
97 lines (97 loc) · 1.76 KB
/
Copy pathbiome.json
File metadata and controls
97 lines (97 loc) · 1.76 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"$schema": "./web/node_modules/@biomejs/biome/configuration_schema.json",
"assist": {
"enabled": true,
"actions": {
"preset": "recommended",
"source": {
"preset": "recommended",
"organizeImports": {
"level": "on",
"options": {
"groups": [
"**/*.css",
":BLANK_LINE:",
[":BUN:", ":NODE:", "astro", "astro/**", "@astrojs/**", "react", "react/**", "react-dom", "react-dom/**"],
["d3-*", "d3/**"],
[":PACKAGE_WITH_PROTOCOL:", ":PACKAGE:"],
":BLANK_LINE:",
[":ALIAS:", ":PATH:"]
]
}
}
}
}
},
"formatter": {
"indentStyle": "tab",
"indentWidth": 2,
"lineWidth": 120
},
"vcs": {
"enabled": true,
"useIgnoreFile": true,
"clientKind": "git",
"defaultBranch": "main"
},
"css": {
"parser": { "cssModules": true },
"formatter": {
"indentStyle": "space",
"indentWidth": 2
}
},
"linter": {
"rules": {
"preset": "recommended",
"suspicious": {
"noArrayIndexKey": "off"
},
"a11y": {
"useSemanticElements": "off",
"noStaticElementInteractions": "off"
},
"style": {
"noDescendingSpecificity": "off",
"useImportType": {
"level": "on",
"options": {
"style": "auto"
}
}
},
"complexity": {
"noImportantStyles": "off"
},
"correctness": {
"useUniqueElementIds": "off"
}
}
},
"files": {
"includes": [
"web/**/*.{ts,tsx,astro,css}",
"!web/dist",
"!web/node_modules",
"!web/.astro",
"!web/src/api/dashboard.ts",
"tracker/script.ts"
]
},
"overrides": [
{
"includes": ["**/*.astro"],
"assist": {
"enabled": false
},
"linter": {
"rules": {
"correctness": {
"noUnusedImports": "off",
"noUnusedVariables": "off"
}
}
}
}
]
}