theia/.prettierrc
Benjamin Palko 8b064f9cdd
All checks were successful
Deployment / Deploy Storybook (push) Successful in 5m56s
init
2025-04-01 15:52:50 -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"
}
}
]
}