Initial commit

This commit is contained in:
Casey Timm
2025-06-29 15:15:31 -04:00
commit 7900ecaaf8
14 changed files with 1638 additions and 0 deletions

15
.prettierrc Normal file
View File

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