sprigsy-editor/.prettierrc

16 lines
225 B
Text
Raw Normal View History

2024-08-14 21:41:49 +00:00
{
"useTabs": true,
"singleQuote": true,
"trailingComma": "none",
"printWidth": 100,
2025-01-12 17:56:21 +00:00
"plugins": ["prettier-plugin-svelte"],
2024-08-14 21:41:49 +00:00
"overrides": [
{
"files": "*.svelte",
"options": {
"parser": "svelte"
}
}
]
}