initial commit

This commit is contained in:
Elijah Duffy
2026-02-02 18:28:49 -08:00
commit 27e31408d2
19 changed files with 3852 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"
}
}
]
}