-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added .htmlhintrc for local html lint config
- Loading branch information
1 parent
2a313dd
commit 5edc35f
Showing
1 changed file
with
73 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
{ | ||
"plugins": [], // npm modules to load | ||
|
||
"maxerr": false, | ||
"raw-ignore-regex": false, | ||
"attr-bans": [ | ||
"align", | ||
"background", | ||
"bgcolor", | ||
"border", | ||
"frameborder", | ||
"longdesc", | ||
"marginwidth", | ||
"marginheight", | ||
"scrolling", | ||
"style", | ||
"width" | ||
], | ||
"indent-delta": false, | ||
"indent-style": "nonmixed", | ||
"indent-width": 4, | ||
"indent-width-cont": false, | ||
"spec-char-escape": true, | ||
"text-ignore-regex": false, | ||
"tag-bans": [ | ||
"b", | ||
"i" | ||
], | ||
"tag-close": true, | ||
"tag-name-lowercase": true, | ||
"tag-name-match": true, | ||
"tag-self-close": false, | ||
"doctype-first": false, | ||
"doctype-html5": false, | ||
"attr-name-style": "dash", | ||
"attr-name-ignore-regex": false, | ||
"attr-no-dup": true, | ||
"attr-no-unsafe-char": true, | ||
"attr-order": false, | ||
"attr-quote-style": "double", | ||
"attr-req-value": false, | ||
"attr-new-line": false, | ||
"attr-validate": true, | ||
"id-no-dup": true, | ||
"id-class-no-ad": true, | ||
"id-class-style": false, | ||
"class-no-dup": true, | ||
"class-style": false, | ||
"id-class-ignore-regex": false, | ||
"img-req-alt": true, | ||
"img-req-src": true, | ||
"html-valid-content-model": true, | ||
"head-valid-content-model": true, | ||
"href-style": false, | ||
"link-req-noopener": true, | ||
"label-req-for": true, | ||
"line-end-style": "lf", | ||
"line-no-trailing-whitespace": true, | ||
"line-max-len": false, | ||
"line-max-len-ignore-regex": false, | ||
"head-req-title": true, | ||
"title-no-dup": true, | ||
"title-max-len": 60, | ||
"html-req-lang": false, | ||
"lang-style": "case", | ||
"fig-req-figcaption": false, | ||
"focusable-tabindex-style": false, | ||
"input-radio-req-name": true, | ||
"input-req-label": false, | ||
"table-req-caption": false, | ||
"table-req-header": false, | ||
"tag-req-attr": false | ||
} |