attr-whitespace
No leading or trailing spaces inside attribute 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>