forge/web/.prettierrc
Damianko135 11345cfe87 Initial commit
Initialize web, api and database for this project.
Web uses better-auth, paraglide, tailwind, shadcn components, and more.

Not much else has been done.
2026-04-26 12:09:10 +02:00

17 lines
306 B
Plaintext

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