chore: bootstrap monorepo (turbo, biome, docker-compose, env, CHOICES)

This commit is contained in:
Marco Sadjadi
2026-05-19 00:20:15 +02:00
commit fe4800e2c8
11 changed files with 1091 additions and 0 deletions

55
biome.json Normal file
View File

@@ -0,0 +1,55 @@
{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"files": {
"ignore": [
"**/node_modules",
"**/.next",
"**/dist",
"**/.turbo",
"**/drizzle",
"**/.pnpm-store",
"**/build-context"
]
},
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 100
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"suspicious": {
"noExplicitAny": "error",
"noConsoleLog": "off"
},
"style": {
"useImportType": "off",
"useNodejsImportProtocol": "warn"
},
"complexity": {
"noBannedTypes": "warn"
}
}
},
"javascript": {
"formatter": {
"quoteStyle": "single",
"semicolons": "always",
"trailingCommas": "all",
"arrowParentheses": "always"
}
},
"json": {
"formatter": {
"indentWidth": 2
}
}
}