You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
prettier-plugin-svelte 2.x now keeps newlines if the user desires it. The extension now comes prepacked with the newest version. If you use prettier-plugin-svelte locally within your project, you need to bump that version.
Describe the bug
{#each items as item}
{item}
{/each}
gets automatically formatted (Option + Shift + F) in VSCode to
{#each items as item}{item}{/each}
Would much prefer if the auto formatter did not compress the each loop to a single line.
To Reproduce
Steps to reproduce the behavior:
For example a code snippet that is treated in a way you don't expect.
Expected behavior
A clear and concise description of what you expected to happen.
Screenshots
If applicable, add screenshots to help explain your problem.
System (please complete the following information):
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: