attr-no-unnecessary-whitespace
No spaces between attribute names and values.
Level: error
Config value
- true: enable rule
- false: disable rule
The following pattern are not considered violations:
<div title="a"></div>
The following pattern is considered violation:
<div title = "a"></div>
<div title= "a"></div>
<div title ="a"></div>