add biome

This commit is contained in:
BeauTroll
2026-01-19 18:01:31 +01:00
parent 0bea7bc3f4
commit ba8a46fcd3
2 changed files with 44 additions and 34 deletions

View File

@@ -6,7 +6,13 @@
"useIgnoreFile": true
},
"files": {
"ignoreUnknown": false
"ignore": [
"node_modules",
".output",
"dist",
"prisma/migrations",
"*.gen.ts"
]
},
"formatter": {
"enabled": true,

View File

@@ -6,7 +6,10 @@
"dev": "vite dev --port 3000",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run"
"test": "vitest run",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write ."
},
"dependencies": {
"@prisma/client": "^7.2.0",
@@ -47,3 +50,4 @@
"web-vitals": "^5.1.0"
}
}