🔧 This rule is automatically fixable by the --fix CLI option.
Disallow trailing whitespace at the end of lines.
In examples below, • represents a trailing space character.
This rule forbids the following:
<template>
<div>Hello</div>••
</template>This rule allows the following:
<template>
<div>Hello</div>
</template>- no-trailing-spaces from eslint