mirror of
https://github.com/hyperknot/openfreemap.git
synced 2026-05-21 05:52:17 +00:00
29 lines
586 B
JSON
29 lines
586 B
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/2.2.4/schema.json",
|
|
"formatter": {
|
|
"indentStyle": "space",
|
|
"lineWidth": 100
|
|
},
|
|
"assist": { "actions": { "source": { "organizeImports": "on" } } },
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"recommended": true,
|
|
"complexity": {
|
|
"noForEach": "off"
|
|
}
|
|
},
|
|
"includes": ["**"]
|
|
},
|
|
"javascript": {
|
|
"formatter": {
|
|
"semicolons": "asNeeded",
|
|
"quoteStyle": "single"
|
|
}
|
|
},
|
|
"files": {
|
|
"maxSize": 100000,
|
|
"includes": ["**", "!**/venv", "!**/dist", "!**/.astro"]
|
|
}
|
|
}
|