svelte init

This commit is contained in:
Zhongheng Liu 2025-07-26 09:41:34 +08:00
commit 0cd98b9536
Signed by: steven
GPG key ID: 805A28B071DAD84B
20 changed files with 3760 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"
}
}
]
}