Files
finance/biome.json

50 lines
979 B
JSON

{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"organizeImports": {
"enabled": true
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"suspicious": {
"noExplicitAny": "warn"
},
"style": {
"useTemplate": "error",
"useConst": "error"
},
"correctness": {
"noUnusedImports": "error"
},
"complexity": {
"noExcessiveCognitiveComplexity": "warn"
},
"nursery": {}
}
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 100
},
"javascript": {
"formatter": {
"quoteStyle": "single",
"semicolons": "always"
},
"parser": {
"unsafeParameterDecoratorsEnabled": true
}
},
"files": {
"ignore": ["dist", "node_modules", "**/*.astro", "coverage"]
},
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true
}
}