ssh-portfolio/www/.prettierrc
2025-08-12 01:57:55 -04:00

16 lines
296 B
Text

{
"useTabs": true,
"singleQuote": true,
"trailingComma": "none",
"printWidth": 200,
"plugins": ["prettier-plugin-svelte", "prettier-plugin-tailwindcss"],
"overrides": [
{
"files": "*.svelte",
"options": {
"parser": "svelte"
}
}
],
"tailwindStylesheet": "./src/app.css"
}