-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.htmllintrc
48 lines (48 loc) · 1.11 KB
/
.htmllintrc
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
48
// htmllint Options: https://github.com/htmllint/htmllint/wiki/Options
{
"attr-bans": [
"align",
"background",
"bgcolor",
"border",
"frameborder",
"longdesc",
"marginwidth",
"marginheight",
"scrolling",
"style",
"width"
],
"attr-name-ignore-regex": false,
"attr-name-style": false,
"attr-no-dup": true,
"attr-no-unsafe-char": true,
"attr-quote-style": "double",
"attr-req-value": false,
"class-style": "none",
"doctype-first": false,
"doctype-html5": false,
"head-req-title": true,
"href-style": false,
"html-req-lang": false,
"id-class-ignore-regex": false,
"id-class-no-ad": true,
"id-class-style": "dash",
"id-no-dup": true,
"img-req-alt": true,
"img-req-src": true,
"indent-style": "spaces",
"indent-width": 2,
"input-radio-req-name": true,
"label-req-for": true,
"lang-style": "case",
"line-end-style": "lf",
"line-max-len-ignore-regex": false,
"line-max-len": false,
"spec-char-escape": false,
"tag-bans": ["style", "b"],
"tag-name-lowercase": true,
"tag-self-close": false,
"title-max-len": 60,
"title-no-dup": true
}