boring.tools/biome.json
Lars Hampe 46b49abd17
Some checks failed
Build and Push Docker Image / build (push) Failing after 17s
feat: bun workspace setup
2024-09-28 13:33:44 +02:00

38 lines
981 B
JSON

{
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
"formatter": {
"enabled": true,
"formatWithErrors": false,
"indentStyle": "space",
"indentWidth": 2,
"lineEnding": "lf",
"lineWidth": 80,
"attributePosition": "auto",
"ignore": ["**/build", "**/coverage", "**/*.json"]
},
"organizeImports": { "enabled": true },
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"suspicious": { "noConsoleLog": "warn" },
"correctness": { "noChildrenProp": "off" }
},
"ignore": ["**/*.json", "**/*.gen.ts"]
},
"javascript": {
"formatter": {
"jsxQuoteStyle": "double",
"quoteProperties": "asNeeded",
"trailingCommas": "all",
"semicolons": "asNeeded",
"arrowParentheses": "always",
"bracketSpacing": true,
"bracketSameLine": false,
"quoteStyle": "single",
"attributePosition": "auto"
}
},
"overrides": [{ "include": ["*.astro"] }]
}