generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathbiome.json
More file actions
45 lines (45 loc) · 875 Bytes
/
biome.json
File metadata and controls
45 lines (45 loc) · 875 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
36
37
38
39
40
41
42
43
44
45
{
"$schema": "node_modules/@biomejs/biome/configuration_schema.json",
"files": {
"includes": ["**", "!**/dist/**/*.cjs"]
},
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true,
"defaultBranch": "master"
},
"linter": {
"enabled": true,
"domains": {
"project": "recommended",
"turborepo": "all"
},
"rules": {
"recommended": true,
"correctness": {
"useImportExtensions": {
"fix": "safe",
"level": "error",
"options": {
"forceJsExtensions": true
}
}
},
"nursery": {
"noImportCycles": "error"
}
}
},
"formatter": {
"enabled": true,
"formatWithErrors": true,
"useEditorconfig": true
},
"assist": {
"enabled": true,
"actions": {
"recommended": true
}
}
}