init
Some checks failed
Deployment / Deploy (push) Has been cancelled

This commit is contained in:
Benjamin Palko 2025-04-01 13:49:37 -04:00
commit 4ca9e1b089
76 changed files with 3578 additions and 0 deletions

21
.prettierrc Normal file
View file

@ -0,0 +1,21 @@
{
"useTabs": true,
"singleQuote": true,
"trailingComma": "es5",
"printWidth": 100,
"endOfLine": "lf",
"arrowParens": "always",
"jsxSingleQuote": false,
"semi": true,
"quoteProps": "as-needed",
"tabWidth": 4,
"plugins": ["prettier-plugin-svelte", "prettier-plugin-tailwindcss"],
"overrides": [
{
"files": "*.svelte",
"options": {
"parser": "svelte"
}
}
]
}