-
Notifications
You must be signed in to change notification settings - Fork 1
/
.pug-lintrc
105 lines (105 loc) · 2.31 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"disallowAttributeConcatenation": true,
"disallowAttributeInterpolation": null,
"disallowBlockExpansion": true,
"disallowClassAttributeWithStaticValue": true,
"disallowClassLiterals": null,
"disallowClassLiteralsBeforeAttributes": null,
"disallowClassLiteralsBeforeIdLiterals": true,
"disallowDuplicateAttributes": true,
"disallowHtmlText": true,
"disallowIdAttributeWithStaticValue": true,
"disallowIdLiterals": null,
"disallowIdLiteralsBeforeAttributes": null,
"disallowMultipleLineBreaks": true,
"disallowSpaceAfterCodeOperator": null,
"disallowSpacesInsideAttributeBrackets": null,
"disallowSpecificAttributes": [
"ng-app",
"ng-bind",
"ng-bindhtml",
"ng-bindtemplate",
"ng-blur",
"ng-change",
"ng-checked",
"ng-class",
"ng-classeven",
"ng-classodd",
"ng-click",
"ng-cloak",
"ng-controller",
"ng-copy",
"ng-csp",
"ng-cut",
"ng-dblclick",
"ng-disabled",
"ng-focus",
"ng-form",
"ng-hide",
"ng-href",
"ng-if",
"ng-include",
"ng-init",
"ng-jq",
"ng-keydown",
"ng-keypress",
"ng-keyup",
"ng-list",
"ng-maxlength",
"ng-minlength",
"ng-model",
"ng-modeloptions",
"ng-mousedown",
"ng-mouseenter",
"ng-mouseleave",
"ng-mousemove",
"ng-mouseover",
"ng-mouseup",
"ng-nonbindable",
"ng-open",
"ng-options",
"ng-paste",
"ng-pattern",
"ng-pluralize",
"ng-readonly",
"ng-repeat",
"ng-required",
"ng-selected",
"ng-show",
"ng-src",
"ng-srcset",
"ng-style",
"ng-submit",
"ng-switch",
"ng-transclude",
"ng-value",
"data-ng-show",
"data-ng-hide"
],
"disallowSpecificTags": null,
"disallowStringConcatenation": true,
"disallowStringInterpolation": null,
"disallowTagInterpolation": null,
"maximumNumberOfLines": null,
"requireClassLiteralsBeforeAttributes": true,
"requireClassLiteralsBeforeIdLiterals": null,
"requireIdLiteralsBeforeAttributes": true,
"requireLineFeedAtFileEnd": true,
"requireLowerCaseAttributes": true,
"requireLowerCaseTags": true,
"requireSpaceAfterCodeOperator": true,
"requireSpacesInsideAttributeBrackets": null,
"requireSpecificAttributes": [
{ "img": "alt" }
],
"requireStrictEqualityOperators": true,
"validateAttributeQuoteMarks": "\"",
"validateAttributeSeparator": {
"separator": " ",
"multiLineSeparator": "\n "
},
"validateDivTags": true,
"validateIndentation": 2,
"validateLineBreaks": "LF",
"validateSelfClosingTags": true
}