a921561083
biome doesn't support formatting html and css in svelte yet, so we use prettier as a workaround for now
15 lines
224 B
Text
15 lines
224 B
Text
{
|
|
"useTabs": true,
|
|
"singleQuote": false,
|
|
"trailingComma": "all",
|
|
"printWidth": 80,
|
|
"plugins": ["prettier-plugin-svelte"],
|
|
"overrides": [
|
|
{
|
|
"files": "*.svelte",
|
|
"options": {
|
|
"parser": "svelte"
|
|
}
|
|
}
|
|
]
|
|
}
|