-
Notifications
You must be signed in to change notification settings - Fork 2
/
.pug-lintrc
36 lines (36 loc) · 1.21 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
{
"puglint.enable": true,
"puglint.run": "onType",
"disallowAttributeConcatenation": null,
"disallowBlockExpansion": null,
"disallowClassAttributeWithStaticValue": null,
"disallowClassLiterals": null,
"disallowClassLiteralsBeforeAttributes": null,
"disallowClassLiteralsBeforeIdLiterals": null,
"disallowDuplicateAttributes": true,
"disallowHtmlText": null,
"disallowIdAttributeWithStaticValue": null,
"disallowMultipleLineBreaks": true,
"disallowSpaceAfterCodeOperator": null,
"disallowSpacesInsideAttributeBrackets": true,
"disallowSpecificAttributes": [{ "a": "name" }],
"disallowSpecificTags": null,
"disallowStringConcatenation": true,
"disallowStringInterpolation": null,
"disallowTagInterpolation": null,
"maximumNumberOfLines": null,
"requireLineFeedAtFileEnd": true,
"requireLowerCaseTags": true,
"requireSpaceAfterCodeOperator": null,
"requireSpacesInsideAttributeBrackets": null,
"requireSpecificAttributes": [
{ "img": "alt" },
{ "input": "type" },
{ "input[type=submit]": "value" }
],
"requireStrictEqualityOperators": true,
"validateAttributeSeparator": null,
"validateIndentation": "\t",
"validateLineBreaks": "LF",
"validateSelfClosingTags": true
}