initial commit

This commit is contained in:
hazycora 2024-05-22 22:47:15 -05:00
commit 4d0434cee1
No known key found for this signature in database
GPG key ID: 215AF1F81F86940E
70 changed files with 6327 additions and 0 deletions

20
.prettierrc Normal file
View file

@ -0,0 +1,20 @@
{
"svelteStrictMode": false,
"svelteAllowShorthand": true,
"svelteIndentScriptAndStyle": true,
"semi": false,
"useTabs": true,
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"bracketSameLine": false,
"plugins": ["prettier-plugin-svelte"],
"overrides": [
{
"files": "*.svelte",
"options": {
"parser": "svelte"
}
}
]
}