- ⚙️ This rule is included in
"plugin:vue/strongly-recommended"
and"plugin:vue/recommended"
. - 🔧 The
--fix
option on the command line can automatically fix some of the problems reported by this rule.
This rule disallow spaces around equal signs in attribute.
HTML5 allows spaces around equal signs. But space-less is easier to read, and groups entities better together.
👎 Examples of incorrect code for this rule:
<div class = "item">
👍 Examples of correct code for this rule:
<div class="item">