Initial template

This commit is contained in:
hh
2026-09-08 19:15:15 +02:00
commit 2ad458c018
35 changed files with 865 additions and 0 deletions
+44
View File
@@ -0,0 +1,44 @@
{
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
"extends": ["ultracite/biome/core", "ultracite/biome/svelte"],
"files": {
"includes": [
"!.claude",
"!.svelte-kit",
"!build",
"!.mcp.json",
"!.impeccable"
]
},
"javascript": { "globals": ["Bun"] },
"overrides": [
{%- if ui_library == 'shadcn' %}
{
"includes": ["src/lib/components/ui/**"],
"linter": { "enabled": false },
"assist": { "enabled": false }
},
{
"includes": ["src/lib/utils.ts"],
"linter": { "rules": { "suspicious": { "noExplicitAny": "off" } } }
},
{%- endif %}
{
"includes": ["**/*.svelte"],
"linter": {
"rules": {
"style": {
"useFilenamingConvention": {
"level": "error",
"options": { "filenameCases": ["kebab-case", "PascalCase"] }
}
}
}
}
},
{
"includes": ["src/app.d.ts"],
"linter": { "rules": { "style": { "noNamespace": "off" } } }
}
]
}