htmllint
Version:
An unofficial html5 linter.
15 lines (14 loc) • 363 B
JavaScript
module.exports = {
'doctype-first': true,
'doctype-html5': true,
'attr-no-dup': true,
'id-no-dup': true,
'img-req-alt': 'allownull',
'img-req-src': true,
'label-req-for': 'strict',
'title-no-dup': true,
'tag-close': true,
'html-valid-content-model': true,
'head-valid-content-model': true,
'attr-validate': true
};