-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbiome.jsonc
More file actions
40 lines (40 loc) · 808 Bytes
/
Copy pathbiome.jsonc
File metadata and controls
40 lines (40 loc) · 808 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
32
33
34
35
36
37
38
39
40
{
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
"extends": ["ultracite/biome/core", "ultracite/biome/next"],
"files": {
"includes": [
"!packages/ui/src/components/ui",
"!packages/ui/src/components/home/cli/ralph.tsx"
]
},
"linter": {
"rules": {
"performance": {
"noImgElement": "off",
"noBarrelFile": "off"
}
}
},
"overrides": [
{
"includes": ["apps/server/convex/**"],
"linter": {
"rules": {
"style": {
"useFilenamingConvention": "off"
}
}
}
},
{
"includes": ["**/tests/utils/**"],
"linter": {
"rules": {
"suspicious": {
"noMisplacedAssertion": "off"
}
}
}
}
]
}