attr-validate
If set, attributes in a tag must be well-formed.
The following patterns are considered violations:
  <div id= ></div>
  <div class="large id="title"></div>
  <div class=="a"></div>
The following patterns are not considered violations:
  <div class="foo"></div>
  <div disabled></div>