HTMLHint profile

HTMLHint can do static code checking tool for HTML code, so as to ensure the quality and specification of HTML code. HTMLHint tool built 23 rule, it is proposed .htmlhintrcrules are open as far as possible in the configuration file:

{
  "tagname-lowercase": true,
  "attr-lowercase": true,
  "attr-value-double-quotes": true,
  "attr-value-not-empty": true,
  "attr-no-duplication": true,
  "doctype-first": true,
  "tag-pair": true,
  "tag-self-close": true,
  "spec-char-escape": true,
  "id-unique": true,
  "src-not-empty": true,
  "title-require": true,
  "alt-require": true,
  "doctype-html5": true,
  "id-class-value": "dash",
  "style-disabled": true,
  "inline-style-disabled": true,
  "inline-script-disabled": true,
  "space-tab-mixed-disabled": "space4",
  "id-class-ad-disabled": true,
  "href-abs-or-rel": false,
  "attr-unsafe-chars": true,
  "head-script-disabled": true
}

The specific meaning of each rule, see the next article htmlhint Detailed rules

Guess you like

Origin www.cnblogs.com/homehtml/p/12032187.html