Statusphere Feed Generator
1{
2 "$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
3 "vcs": {
4 "enabled": false,
5 "clientKind": "git",
6 "useIgnoreFile": false
7 },
8 "files": {
9 "ignoreUnknown": true,
10 "ignore": [
11 "build/**",
12 "dist/**",
13 "drizzle/**",
14 "node_modules/**",
15 "dump/",
16 "tsconfig.json",
17 ".next/**"
18 ]
19 },
20 "formatter": {
21 "enabled": true,
22 "formatWithErrors": false,
23 "indentStyle": "space",
24 "indentWidth": 2,
25 "lineWidth": 80,
26 "ignore": ["dist/**/*"]
27 },
28 "organizeImports": {
29 "enabled": true
30 },
31 "linter": {
32 "enabled": true,
33 "rules": {
34 "recommended": true,
35 "suspicious": {
36 "noExplicitAny": "off",
37 "noArrayIndexKey": "off"
38 },
39 "style": {
40 "noNonNullAssertion": "off"
41 },
42 "a11y": {
43 "noSvgWithoutTitle": "off",
44 "useMediaCaption": "off"
45 }
46 },
47 "ignore": ["dist/**/*"]
48 },
49 "javascript": {
50 "parser": {
51 "unsafeParameterDecoratorsEnabled": true
52 },
53 "formatter": {
54 "quoteStyle": "single",
55 "trailingCommas": "es5"
56 }
57 },
58 "json": {
59 "formatter": {
60 "indentWidth": 2
61 }
62 }
63}