forked from markuplint/markuplint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.json
69 lines (69 loc) · 3.39 KB
/
schema.json
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"definitions": {
"rules": {
"type": "object",
"additionalProperties": false,
"properties": {
"attr-duplication": {
"$ref": "https://raw.githubusercontent.com/markuplint/markuplint/master/packages/%40markuplint/rules/src/attr-duplication/schema.json"
},
"attr-equal-space-after": {
"$ref": "https://raw.githubusercontent.com/markuplint/markuplint/master/packages/%40markuplint/rules/src/attr-equal-space-after/schema.json"
},
"attr-equal-space-before": {
"$ref": "https://raw.githubusercontent.com/markuplint/markuplint/master/packages/%40markuplint/rules/src/attr-equal-space-before/schema.json"
},
"attr-spacing": {
"$ref": "https://raw.githubusercontent.com/markuplint/markuplint/master/packages/%40markuplint/rules/src/attr-spacing/schema.json"
},
"attr-value-quotes": {
"$ref": "https://raw.githubusercontent.com/markuplint/markuplint/master/packages/%40markuplint/rules/src/attr-value-quotes/schema.json"
},
"case-sensitive-attr-name": {
"$ref": "https://raw.githubusercontent.com/markuplint/markuplint/master/packages/%40markuplint/rules/src/case-sensitive-attr-name/schema.json"
},
"case-sensitive-tag-name": {
"$ref": "https://raw.githubusercontent.com/markuplint/markuplint/master/packages/%40markuplint/rules/src/case-sensitive-tag-name/schema.json"
},
"character-reference": {
"$ref": "https://raw.githubusercontent.com/markuplint/markuplint/master/packages/%40markuplint/rules/src/character-reference/schema.json"
},
"class-naming": {
"$ref": "https://raw.githubusercontent.com/markuplint/markuplint/master/packages/%40markuplint/rules/src/class-naming/schema.json"
},
"deprecated-attr": {
"$ref": "https://raw.githubusercontent.com/markuplint/markuplint/master/packages/%40markuplint/rules/src/deprecated-attr/schema.json"
},
"deprecated-element": {
"$ref": "https://raw.githubusercontent.com/markuplint/markuplint/master/packages/%40markuplint/rules/src/deprecated-element/schema.json"
},
"doctype": {
"$ref": "https://raw.githubusercontent.com/markuplint/markuplint/master/packages/%40markuplint/rules/src/doctype/schema.json"
},
"id-duplication": {
"$ref": "https://raw.githubusercontent.com/markuplint/markuplint/master/packages/%40markuplint/rules/src/id-duplication/schema.json"
},
"indentation": {
"$ref": "https://raw.githubusercontent.com/markuplint/markuplint/master/packages/%40markuplint/rules/src/indentation/schema.json"
},
"invalid-attr": {
"$ref": "https://raw.githubusercontent.com/markuplint/markuplint/master/packages/%40markuplint/rules/src/invalid-attr/schema.json"
},
"landmark-roles": {
"$ref": "https://raw.githubusercontent.com/markuplint/markuplint/master/packages/%40markuplint/rules/src/landmark-roles/schema.json"
},
"permitted-contents": {
"$ref": "https://raw.githubusercontent.com/markuplint/markuplint/master/packages/%40markuplint/rules/src/permitted-contents/schema.json"
},
"required-attr": {
"$ref": "https://raw.githubusercontent.com/markuplint/markuplint/master/packages/%40markuplint/rules/src/required-attr/schema.json"
},
"required-h1": {
"$ref": "https://raw.githubusercontent.com/markuplint/markuplint/master/packages/%40markuplint/rules/src/required-h1/schema.json"
}
}
}
}
}