← Back

vue/no-multi-spaces warning

Remove 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>