warning
vue/no-multi-spacesRemove multiple spaces in a row between attributes which are not used for indentation
Examples
❌ Incorrect
<template>
<div class="foo"
:style="bar" />
</template>
✅ Correct
<template>
<div
class="foo"
:style="bar"
/>
</template>