-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathbiome.jsonc
More file actions
26 lines (23 loc) · 615 Bytes
/
biome.jsonc
File metadata and controls
26 lines (23 loc) · 615 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
{
"formatter": {
"useEditorconfig": true,
"lineWidth": 100, // FIX value from editorconfig not correctly applied
"formatWithErrors": true
},
"linter": {
"rules": {
"style": { "noDescendingSpecificity": "off" } // not useful for themes
}
},
"files": {
"includes": ["**", "!theme.css"],
"ignoreUnknown": true
},
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true
},
// use the schema from the local biome package installed via `mason`
"$schema": "/Users/chrisgrieser/.local/share/nvim/mason/packages/biome/node_modules/@biomejs/biome/configuration_schema.json"
}