platform/plugins/tracker-resources/.prettierrc
Andrey Sobolev 67e81b35dd
Update to svelte 4.2.12 and some template fixes (#4982)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
2024-03-15 16:33:12 +07:00

22 lines
424 B
Plaintext

{
"$schema": "http://json-schema.org/draft-04/schema#",
"trailingComma": "none",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"printWidth": 120,
"useTabs": false,
"bracketSpacing": true,
"proseWrap": "preserve",
"plugins": [
"prettier-plugin-svelte"
],
"overrides": [
{
"files": "*.svelte",
"options": {
"parser": "svelte"
}
}
]
}