-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbiome.json
More file actions
72 lines (72 loc) · 2.21 KB
/
Copy pathbiome.json
File metadata and controls
72 lines (72 loc) · 2.21 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
{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 100,
"lineEnding": "lf"
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"performance": {
"noDelete": "off"
}
}
},
"files": {
"maxSize": 2000000,
"ignore": [
"**/.agents/**",
"**/.cache/**",
"**/biome-report.json",
"**/.recursive/**",
"**/.react-router/**",
"**/.source/**",
".tmp/**",
".tmp-req-*.json",
"tmp-req-*.json",
"**/.worktrees/**",
"**/build/**",
"**/dist/**",
"**/role-model-router/packages/catalog/data/normalized-catalog.json",
"**/testdata/catalog/models-dev-snapshot.json",
"**/vendor/**",
"**/target/**",
"**/runtime-output/**",
"**/test-results/**"
]
},
"overrides": [
{
"include": [
"role-model-router/apps/runtime-ui/app/components/page-primitives.tsx",
"role-model-router/apps/runtime-ui/app/components/themed-select.tsx",
"role-model-router/apps/runtime-ui/app/components/checkbox-control.tsx",
"role-model-router/apps/runtime-ui/app/components/theme-toggle.tsx",
"role-model-router/apps/runtime-ui/app/routes/control-routing-strategy.tsx",
"role-model-router/apps/runtime-ui/app/routes/providers.tsx",
"role-model-router/apps/runtime-ui/app/lib/role-task-hierarchy.tsx",
"role-model-router/apps/runtime-ui/app/components/local-model-role-picker.tsx",
"role-model-router/apps/runtime-ui/app/routes/control-roles.tsx",
"role-model-router/packages/ui/src/metric-strip.tsx",
"role-model-router/packages/ui/src/segmented-control.tsx",
"role-model-router/packages/ui/src/page-filters.tsx",
"role-model-router/packages/ui/src/page-shell.tsx",
"role-model-router/packages/ui/src/sidebar.tsx"
],
"linter": {
"rules": {
"a11y": {
"useSemanticElements": "off",
"useFocusableInteractive": "off",
"noSvgWithoutTitle": "off",
"noLabelWithoutControl": "off"
}
}
}
}
]
}