1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-09-29 23:09:05 +02:00

Add HTMLHint to the build; fixes #20297 (#20301)

[skip sauce]
This commit is contained in:
Chris Rebert
2016-07-14 16:22:56 -07:00
committed by GitHub
parent 610a089054
commit 0cf5204a48
3 changed files with 21 additions and 1 deletions

15
docs/.htmlhintrc Normal file
View File

@@ -0,0 +1,15 @@
{
"attr-lowercase": true,
"attr-no-duplication": true,
"alt-require": true,
"attr-unsafe-chars": true,
"attr-value-double-quotes": true,
"doctype-first": true,
"doctype-html5": true,
"id-unique": true,
"spec-char-escape": true,
"src-not-empty": true,
"tag-pair": true,
"tagname-lowercase": true,
"title-require": true
}