feat: Add Biome configuration and update project settings for improved development experience. adds devcontainer to satisfy #14

This commit is contained in:
GitHub Copilot
2025-05-01 16:29:36 -04:00
parent c9cdd83a58
commit fe5bd43f3a
6 changed files with 261 additions and 16 deletions

39
biome.json Normal file
View File

@@ -0,0 +1,39 @@
{
"$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"
]
}
}