-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbiome.json
More file actions
35 lines (35 loc) · 712 Bytes
/
biome.json
File metadata and controls
35 lines (35 loc) · 712 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
"vcs": { "clientKind": "git", "enabled": true, "useIgnoreFile": true },
"organizeImports": { "enabled": true },
"linter": {
"enabled": true,
"rules": {
"recommended": true
},
"ignore": [
".vscode/*",
".idea/*",
".github/*",
".husky/*",
"dist/*",
"build/*",
"**/.cache",
"**/public",
"**/node_modules",
"**/*.esm.js",
"**/prettier.config.js",
"**/next.config.js",
"**/next.config.mjs",
"**/postcss.config.js",
"**/tailwind.config.ts",
"**/lint-staged.config.js",
".next/*",
"**/sst-env.d.ts",
"**/dist/",
"**/node_modules/",
"**/coverage/",
"**/vite.config.ts"
]
}
}