/ biome.json
biome.json
1 { 2 "$schema": "https://biomejs.dev/schemas/2.2.6/schema.json", 3 "vcs": { 4 "enabled": true, 5 "clientKind": "git", 6 "useIgnoreFile": true 7 }, 8 "files": { 9 "ignoreUnknown": true 10 }, 11 "formatter": { 12 "enabled": true, 13 "indentStyle": "space", 14 "indentWidth": 2 15 }, 16 "linter": { 17 "enabled": true, 18 "rules": { 19 "recommended": true, 20 "suspicious": { 21 "noUnknownAtRules": "off" 22 } 23 }, 24 "domains": { 25 "next": "recommended", 26 "react": "recommended" 27 } 28 }, 29 "assist": { 30 "actions": { 31 "source": { 32 "organizeImports": "on" 33 } 34 } 35 } 36 }