this repo has no description
1{
2 "$schema": "https://biomejs.dev/schemas/2.4.9/schema.json",
3 "vcs": {
4 "enabled": true,
5 "clientKind": "git",
6 "useIgnoreFile": true
7 },
8 "files": {
9 "ignoreUnknown": true,
10 "includes": ["**", "!node_modules", "!.next", "!dist", "!build"]
11 },
12 "formatter": {
13 "enabled": true,
14 "indentStyle": "space",
15 "indentWidth": 2
16 },
17 "linter": {
18 "enabled": true,
19 "rules": {
20 "recommended": true,
21 "suspicious": {
22 "noUnknownAtRules": "off"
23 }
24 },
25 "domains": {
26 "next": "recommended",
27 "react": "recommended"
28 }
29 },
30 "assist": {
31 "actions": {
32 "source": {
33 "organizeImports": "on"
34 }
35 }
36 },
37 "css": {
38 "parser": {
39 "tailwindDirectives": true
40 }
41 }
42}