-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.htmlvalidate.json
More file actions
49 lines (49 loc) · 1.09 KB
/
.htmlvalidate.json
File metadata and controls
49 lines (49 loc) · 1.09 KB
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
49
{
"extends": [
"html-validate:recommended",
"html-validate:a11y"
],
"rules": {
"doctype-style": "error",
"element-permitted-content": "error",
"element-required-attributes": "error",
"no-duplicate-id": "error",
"no-inline-style": "warn",
"script-type": "error",
"valid-id": "error",
"no-raw-characters": "error",
"prefer-native-element": "error",
"no-missing-references": "error",
"heading-level": "error",
"meta-refresh": "error",
"no-autoplay": "error",
"area-alt": "error",
"input-missing-label": "error",
"require-sri": ["error", {
"target": "crossorigin"
}],
"long-title": ["error", {
"maxlength": 70
}],
"missing-doctype": "error",
"no-self-closing": "off",
"void-style": "off",
"attribute-boolean-style": "off",
"element-permitted-occurrences": "off"
},
"elements": [
"html5",
{
"svg": {
"attributes": {
"xmlns": {
"required": false
}
}
}
}
],
"transform": {
"^.*\\.html$": "html-validate-angular"
}
}