//unexpected Format
<span class="dolorum atque aspernatur"
>Est molestiae sunt facilis qui rem.</span
>
//Expected Format
<span class="dolorum atque aspernatur">
Est molestiae sunt facilis qui rem.
</span>
//Adding this to the .prettierrc or .prettierrc.json file seems to fix this kind of issue:
"htmlWhitespaceSensitivity": "ignore"