attr-whitespace
No leading or trailing spaces inside attribute values.
Level: Error
Config value
Section titled “Config value”true
: enable rulefalse
: disable rule
The following patterns are not considered rule violations
Section titled “The following patterns are not considered rule violations”<div title="a"></div>
The following pattern is considered a rule violation:
Section titled “The following pattern is considered a rule violation:”<div title=" a"></div><div title="a "></div><div title=" a "></div>
Why this rule is important
Section titled “Why this rule is important”Leading or trailing spaces inside attribute values can cause unexpected behavior and make the code harder to read and maintain.