With this code
<template>
<v-toolbar app color="brown darken-4" dark>
<v-btn color="brown lighten-3" class="hidden-sm-and-down">REGISTRIEREN</v-btn>
</v-toolbar>
</template>
Prettier suggests this:
3:62 warning Replace `>REGISTRIEREN</v-btn` with `⏎······>REGISTRIEREN</v-btn⏎····` prettier/prettier
But the code than would look like this:
<template>
<v-toolbar app color="brown darken-4" dark>
<v-btn color="brown lighten-3" class="hidden-sm-and-down"
>REGISTRIEREN</v-btn
>
</v-toolbar>
</template>
Where prettier does not complain. Is this expected behaviour or a bug in VSCode?