mirror of
https://github.com/acedanger/finance.git
synced 2025-12-05 22:50:12 -08:00
35 lines
649 B
JSON
35 lines
649 B
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/1.5.3/schema.json",
|
|
"organizeImports": {
|
|
"enabled": true
|
|
},
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"recommended": true,
|
|
"suspicious": {
|
|
"noExplicitAny": "warn"
|
|
},
|
|
"style": {
|
|
"useTemplate": "error",
|
|
"useConst": "error"
|
|
}
|
|
}
|
|
},
|
|
"formatter": {
|
|
"enabled": true,
|
|
"indentStyle": "space",
|
|
"indentWidth": 2,
|
|
"lineWidth": 100
|
|
},
|
|
"javascript": {
|
|
"formatter": {
|
|
"quoteStyle": "single",
|
|
"semicolons": "always"
|
|
}
|
|
},
|
|
"files": {
|
|
"ignore": ["dist", "node_modules", ".astro", "coverage"]
|
|
}
|
|
}
|