youtuber-blog-frontend/.prettierrc

16 lines
256 B
Plaintext
Raw Normal View History

2024-04-24 20:51:37 +00:00
{
"useTabs": true,
"singleQuote": true,
"trailingComma": "none",
"printWidth": 100,
2024-04-26 16:40:42 +00:00
"plugins": ["prettier-plugin-svelte", "prettier-plugin-tailwindcss"],
"overrides": [
{
"files": "*.svelte",
"options": {
"parser": "svelte"
}
}
]
2024-04-24 20:51:37 +00:00
}