mirror of
https://gitea.gf4.pw/gf4/haveno-markets.git
synced 2024-11-22 18:17:39 -07:00
a921561083
biome doesn't support formatting html and css in svelte yet, so we use prettier as a workaround for now
16 lines
224 B
Plaintext
16 lines
224 B
Plaintext
{
|
|
"useTabs": true,
|
|
"singleQuote": false,
|
|
"trailingComma": "all",
|
|
"printWidth": 80,
|
|
"plugins": ["prettier-plugin-svelte"],
|
|
"overrides": [
|
|
{
|
|
"files": "*.svelte",
|
|
"options": {
|
|
"parser": "svelte"
|
|
}
|
|
}
|
|
]
|
|
}
|