This commit is contained in:
Shibo Lyu 2024-08-28 17:08:32 +08:00
commit a6b8910b8e
69 changed files with 5445 additions and 0 deletions

16
.prettierrc Normal file
View file

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