Skip to content

class-naming

Enforce class name conventions.

Severity

off

❌ Incorrect

html
<div class="MyClass">text</div>

✅ Correct

html
<div class="my-class">text</div>

Reference

Configuration

json
{
  "rules": {
    "class-naming": "error"
  }
}

Released under the MIT License.