# san/no-spaces-around-equal-signs-in-attribute
disallow spaces around equal signs in attribute
- ⚙️ This rule is included in all of
"plugin:san/strongly-recommended"
and"plugin:san/recommended"
. - 🔧 The
--fix
option on the command line (opens new window) can automatically fix some of the problems reported by this rule.
# 📖 Rule Details
This rule disallow spaces around equal signs in attribute.
<template>
<!-- ✗ BAD -->
<div class = "item"></div>
<!-- ✓ GOOD -->
<div class="item"></div>
</template>
Info
HTML5 allows spaces around equal signs. But space-less is easier to read, and groups entities better together.
# 🔧 Options
{
"san/no-spaces-around-equal-signs-in-attribute": ["error"]
}