We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
lowercase-class-with-hyphen
ClassName (value of attribute class) should be lowercased words connected with hyphens (- instead of _). If found not, it reports.
class
-
_
<!-- Bad --> <div class="testClass"></div> <div class="test_class"></div> <!-- Good --> <div class="test-class"></div>
018
ClassName found not lowercased.
019
ClassName found connected with _.
true
Do check / format.
false
Do not check / format.
No.