Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions src/schemas/json/htmlhint.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@
"type": "boolean",
"default": false
},
"attr-value-no-duplication": {
"description": "Class attributes should not contain duplicate values. Other attributes can be checked via configuration.",
"type": "boolean",
"default": false
},
"attr-value-not-empty": {
"description": "Attribute must set value.",
"type": "boolean",
Expand Down Expand Up @@ -62,6 +67,11 @@
"type": "boolean",
"default": false
},
"frame-title-require": {
"description": "A frame or iframe element must have an accessible name.",
"type": "boolean",
"default": false
},
"h1-require": {
"description": "A H1 heading element is required in HTML documents.",
"type": "boolean",
Expand Down Expand Up @@ -112,6 +122,11 @@
"type": "boolean",
"default": false
},
"meta-charset-require": {
"description": "A meta charset is required within the <head> tag.",
"type": "boolean",
"default": false
},
"meta-description-require": {
"description": "A meta description is required within the <head> tag.",
"type": "boolean",
Expand Down Expand Up @@ -142,6 +157,11 @@
"type": "boolean",
"default": false
},
"tag-no-obsolete": {
"description": "Disallows the use of obsolete HTML tags.",
"type": "boolean",
"default": false
},
"tag-pair": {
"description": "Tag must be paired.",
"type": "boolean",
Expand Down