init
All checks were successful
release / release (push) Successful in 1m9s

This commit is contained in:
2024-08-09 15:59:23 +08:00
commit 246bef3b55
33 changed files with 63393 additions and 0 deletions

32
.prettierrc Normal file
View File

@@ -0,0 +1,32 @@
{
"useTabs": false,
"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
}
}
]
}