theia/.prettierrc
Benjamin Palko b2598e0b23
All checks were successful
Deployment / Deploy Storybook (push) Successful in 5m57s
init
2025-04-01 13:50:12 -04:00

21 lines
No EOL
415 B
Text

{
"useTabs": true,
"singleQuote": true,
"trailingComma": "es5",
"printWidth": 100,
"endOfLine": "lf",
"arrowParens": "always",
"jsxSingleQuote": false,
"semi": true,
"quoteProps": "as-needed",
"tabWidth": 4,
"plugins": ["prettier-plugin-svelte", "prettier-plugin-tailwindcss"],
"overrides": [
{
"files": "*.svelte",
"options": {
"parser": "svelte"
}
}
]
}