Initial Commit

This commit is contained in:
2025-06-18 19:08:13 +01:00
parent 83e8103969
commit 32af612bd6
20 changed files with 2708 additions and 34 deletions

15
.prettierrc Normal file
View File

@ -0,0 +1,15 @@
{
"useTabs": true,
"singleQuote": true,
"trailingComma": "none",
"printWidth": 100,
"plugins": ["prettier-plugin-svelte", "prettier-plugin-tailwindcss"],
"overrides": [
{
"files": "*.svelte",
"options": {
"parser": "svelte"
}
}
]
}