Eric Bower
·
2025-06-06
biome.json
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": { "ignoreUnknown": false, "ignore": ["dist", "examples"] },
9 "formatter": { "enabled": true, "indentStyle": "space" },
10 "organizeImports": { "enabled": true },
11 "linter": {
12 "enabled": true,
13 "rules": {
14 "recommended": true,
15 "suspicious": {
16 "noExplicitAny": "off",
17 "noImplicitAnyLet": "off",
18 "noConfusingVoidType": "off"
19 },
20 "correctness": {
21 "useYield": "off",
22 "noChildrenProp": "off"
23 },
24 "complexity": {
25 "noForEach": "off"
26 }
27 }
28 },
29 "javascript": { "formatter": { "quoteStyle": "double" } }
30}