yukiotoko-webui/.prettierrc

16 lines
256 B
Plaintext
Raw Normal View History

2024-12-31 07:12:29 -08:00
{
"useTabs": true,
"singleQuote": true,
"trailingComma": "none",
"printWidth": 100,
"plugins": ["prettier-plugin-svelte", "prettier-plugin-tailwindcss"],
"overrides": [
{
"files": "*.svelte",
"options": {
"parser": "svelte"
}
}
]
}