init
Some checks failed
release / release (push) Has been cancelled

This commit is contained in:
2025-06-11 16:21:08 +08:00
commit 2efae7c0f0
36 changed files with 63396 additions and 0 deletions

32
.prettierrc Normal file
View File

@@ -0,0 +1,32 @@
{
"useTabs": true,
"tabWidth": 4,
"singleQuote": true,
"trailingComma": "none",
"printWidth": 100,
"plugins": ["prettier-plugin-tailwindcss", "prettier-plugin-svelte"],
"overrides": [
{
"files": "*.svelte",
"options": {
"parser": "svelte",
"plugins": ["prettier-plugin-tailwindcss", "prettier-plugin-svelte"]
}
},
{
"files": "*.svx",
"options": {
"parser": "mdx",
"plugins": ["prettier-plugin-tailwindcss", "prettier-plugin-svelte"],
"tabWidth": 2
}
},
{
"files": "*.{json,yaml,yml,prettierrc}",
"options": {
"tabWidth": 2,
"printWidth": 200
}
}
]
}