haveno-markets/.prettierrc
wireless_purple a921561083 add prettier
biome doesn't support formatting html and css in svelte yet, so we use prettier as a workaround for now
2024-10-12 16:01:45 +00:00

15 lines
224 B
Text

{
"useTabs": true,
"singleQuote": false,
"trailingComma": "all",
"printWidth": 80,
"plugins": ["prettier-plugin-svelte"],
"overrides": [
{
"files": "*.svelte",
"options": {
"parser": "svelte"
}
}
]
}