basic setup

react
ts
tailwind
vite
biome
bun
This commit is contained in:
Oliver Bryan
2026-01-07 12:22:30 +00:00
parent c0700e1373
commit 019b8545f1
13 changed files with 707 additions and 0 deletions

27
biome.json Normal file
View File

@@ -0,0 +1,27 @@
{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"organizeImports": {
"enabled": true
},
"formatter": {
"enabled": true,
"formatWithErrors": false,
"indentStyle": "space",
"indentWidth": 4,
"lineWidth": 110
},
"linter": {
"enabled": true,
"rules": {
"recommended": true
}
},
"css": {
"parser": {
"cssModules": true
}
},
"files": {
"ignore": ["dist", "node_modules"]
}
}