attr-name-style
If set, HTML attributes names must conform to the given format.
Options
Possible values :
camelregexplowercasedash[default]
Given:
"dash"
The following patterns are considered violations:
  <div attrName=""></div>
  <div attr_name=""></div>
The following patterns are not considered violations:
  <div attr-name=""></div>