-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbiome.json
More file actions
35 lines (35 loc) · 757 Bytes
/
biome.json
File metadata and controls
35 lines (35 loc) · 757 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/2.4.9/schema.json",
"plugins": [
"./node_modules/@aliou/biome-plugins/plugins/no-inline-imports.grit",
"./node_modules/@aliou/biome-plugins/plugins/no-js-import-extension.grit",
"./node_modules/@aliou/biome-plugins/plugins/no-emojis.grit"
],
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": false
},
"files": {
"includes": ["**/*.ts", "**/*.json"],
"ignoreUnknown": true
},
"assist": {
"actions": {
"source": {
"organizeImports": "on"
}
}
},
"linter": {
"enabled": true,
"rules": {
"recommended": true
}
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2
}
}