the statusphere demo reworked into a vite/react app in a monorepo
1{
2 "$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
3 "formatter": {
4 "indentStyle": "space",
5 "lineWidth": 120
6 },
7 "organizeImports": { "enabled": true },
8 "linter": {
9 "enabled": true,
10 "rules": {
11 "recommended": true,
12 "suspicious": {
13 "noExplicitAny": "off",
14 "noConfusingVoidType": "off"
15 },
16 "style": {
17 "noUselessElse": "off",
18 "noNonNullAssertion": "off"
19 },
20 "complexity": {
21 "noForEach": "off"
22 }
23 }
24 }
25}