Skip to content

rule lowercase class with hyphen

Hanxing Yang edited this page Jul 10, 2016 · 1 revision

name

lowercase-class-with-hyphen

description

ClassName (value of attribute class) should be lowercased words connected with hyphens (- instead of _). If found not, it reports.

sample

<!-- Bad -->
<div class="testClass"></div>
<div class="test_class"></div>

<!-- Good -->
<div class="test-class"></div>

code

  • 018

    ClassName found not lowercased.

  • 019

    ClassName found connected with _.

config

  • true

    Do check / format.

  • false

    Do not check / format.

format support

No.