Info
| Tool |
Version |
| Plugin |
v3.0.0 |
| Prettier |
v3.0.3 |
| Framework |
svelte 4.2.0 |
| Node |
v18.16.1 |
| OS |
mac |
Prettier config
{
"useTabs": false,
"singleQuote": true,
"trailingComma": "none",
"printWidth": 100,
"plugins": ["@prettier/plugin-pug", "prettier-plugin-svelte"],
"pluginSearchDirs": ["."],
"overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }],
"pugSingleQuote": false,
"pugSortAttributes": "asc",
"pugFramework": "svelte"
}
Input
<template lang="pug">
p digest
</template>
Output
<template lang="pug">
p digest</template>
Expected Output
<template lang="pug">
p digest
</template>
Additional Context
At the moment it breaks the styles highlight

Info
Prettier config
{ "useTabs": false, "singleQuote": true, "trailingComma": "none", "printWidth": 100, "plugins": ["@prettier/plugin-pug", "prettier-plugin-svelte"], "pluginSearchDirs": ["."], "overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }], "pugSingleQuote": false, "pugSortAttributes": "asc", "pugFramework": "svelte" }Input
Output
Expected Output
Additional Context
At the moment it breaks the styles highlight