team-1/frontend/.prettierrc

18 lines
325 B
Text
Raw Permalink Normal View History

2025-08-01 18:07:11 +02:00
{
"trailingComma": "es5",
"tabWidth": 4,
"semi": false,
"singleQuote": false,
"printWidth": 200,
"plugins": ["prettier-plugin-svelte", "prettier-plugin-tailwindcss"],
"overrides": [
{
"files": "*.svelte",
"options": {
"parser": "svelte"
}
}
],
"tailwindStylesheet": "./src/app.css"
}