chore: add biome.json to support biome.js

This commit is contained in:
2024-07-25 00:05:25 +01:00
parent 296f196a13
commit 9869c3524e

25
web/biome.json Normal file
View File

@@ -0,0 +1,25 @@
{
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
"linter": {
"enabled": true
},
"formatter": {
"enabled": true,
"indentStyle": "tab",
"indentWidth": 2,
"lineWidth": 80
},
"organizeImports": {
"enabled": true
},
"javascript": {
"formatter": {
"quoteStyle": "double",
"arrowParentheses": "always",
"bracketSameLine": false,
"bracketSpacing": true,
"semicolons": "always",
"trailingCommas": "all"
}
}
}