immich/web/.prettierrc

10 lines
296 B
Plaintext
Raw Normal View History

{
"singleQuote": true,
"trailingComma": "all",
"printWidth": 120,
"semi": true,
"plugins": ["prettier-plugin-organize-imports", "prettier-plugin-svelte"],
"organizeImportsSkipDestructiveCodeActions": true,
2023-11-27 09:42:04 -07:00
"overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }]
}