Add build configuration

This commit is contained in:
dwrz
2026-02-13 15:00:31 +00:00
parent 0740968bca
commit faa1798eb0
4 changed files with 193 additions and 0 deletions

47
biome.json Normal file
View File

@@ -0,0 +1,47 @@
{
"$schema": "https://biomejs.dev/schemas/2.3.13/schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true
},
"assist": {
"actions": {
"source": {
"organizeImports": "on"
}
}
},
"linter": {
"enabled": true,
"rules": {
"recommended": true
}
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 80
},
"javascript": {
"formatter": {
"quoteStyle": "single",
"semicolons": "always"
}
},
"css": {
"formatter": {
"enabled": true
},
"linter": {
"enabled": true
}
},
"files": {
"includes": [
"internal/service/static/**/*.js",
"internal/service/static/**/*.css"
]
}
}