niming/.prettierrc

19 lines
263 B
Plaintext
Raw Permalink Normal View History

2024-10-27 18:29:40 +08:00
{
"useTabs": true,
"singleQuote": true,
"trailingComma": "none",
"printWidth": 100,
2024-11-04 01:18:21 +08:00
"plugins": [
"prettier-plugin-svelte",
"prettier-plugin-tailwindcss"
],
2024-10-27 18:29:40 +08:00
"overrides": [
{
"files": "*.svelte",
"options": {
"parser": "svelte"
}
}
]
}