-
Notifications
You must be signed in to change notification settings - Fork 2
/
.pug-lintrc
51 lines (51 loc) · 1.5 KB
/
.pug-lintrc
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
{
"disallowBlockExpansion": true,
"disallowClassAttributeWithStaticValue": true,
"disallowClassLiteralsBeforeAttributes": null,
"disallowClassLiteralsBeforeIdLiterals": true,
"disallowClassLiterals": null,
"disallowDuplicateAttributes": true,
"disallowHtmlText": null,
"disallowIdAttributeWithStaticValue": true,
"disallowIdLiteralsBeforeAttributes": null,
"disallowLegacyMixinCall": true,
"disallowMultipleLineBreaks": true,
"disallowSpaceAfterCodeOperator": null,
"disallowSpacesInsideAttributeBrackets": null,
"disallowSpecificAttributes": null,
"disallowSpecificTags": null,
"disallowStringConcatenation": true,
"disallowStringInterpolation": null,
"disallowTagInterpolation": true,
"disallowTemplateString": null,
"maximumNumberOfLines": null,
"requireClassLiteralsBeforeAttributes": true,
"requireClassLiteralsBeforeIdLiterals": null,
"requireIdLiteralsBeforeAttributes": true,
"requireLineFeedAtFileEnd": true,
"requireLowerCaseTags": true,
"requireSpaceAfterCodeOperator": true,
"requireSpacesInsideAttributeBrackets": null,
"requireSpecificAttributes": [
{
"html": "lang"
},
{
"img": "alt"
},
{
"input": "type"
},
{
"input[type=submit]": "value"
}
],
"requireStrictEqualityOperators": true,
"validateAttributeQuoteMarks": "'",
"validateDivTags": true,
"validateExtensions": null,
"validateIndentation": 2,
"validateLineBreaks": null,
"validateSelfClosingTags": true,
"validateTemplateString": true
}