class-style
Specify a format for the classnames inside the class
attribute, when set all classnames must fit the format
Options
Possible values :
"lowercase"
: Consists of lowercase letters"underscore"
: Lowercase and underscore-separated"dash"
: Lowercase and separated by hyphens"camel"
: camelCase (or CamelCase)"bem"
: The BEM (block, element, modifier) syntax"none"
: Does not enforce a format and prevent the rule from using the format specified by the rule id-class-style.
Given:
"class-style": ["error", "underscore"]
The following patterns are considered violations:
<button class="buttonBlue"></button>
<button class="button--blue"></button>
The following patterns are not considerd violations:
<button class="button_blue"></button>