forked from browserpad/browserpad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtmlhint.conf
47 lines (45 loc) · 1.26 KB
/
htmlhint.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"tag-pair": true,
"tag-self-close": true,
"attr-no-duplication": true,
"spec-char-escape": true,
"id-unique": true,
"title-require": true,
"alt-require": true,
"doctype-html5": true,
"id-class-value": true,
"jshint": {
"enforceall": true,
"browser": true
},
"csslint": {
"adjoining-classes": true,
"bulletproof-font-face": true,
"compatible-vendor-prefixes": true,
"display-property-grouping": true,
"duplicate-background-images": true,
"duplicate-properties": true,
"empty-rules": true,
"fallback-colors": true,
"floats": true,
"font-faces": true,
"font-sizes": true,
"gradients": true,
"import": true,
"important": true,
"known-properties": true,
"non-link-hover": true,
"overqualified-elements": true,
"qualified-headings": true,
"regex-selectors": true,
"shorthand": true,
"star-property-hack": true,
"text-indent": true,
"underscore-property-hack": true,
"vendor-prefix": true,
"unique-headings": true,
"universal-selector": true,
"unqualified-attributes": true,
"zero-units": true
}
}