This repository was archived by the owner on Jun 11, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +458
-0
lines changed Expand file tree Collapse file tree 3 files changed +458
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "tagname-lowercase" : true ,
3+ "attr-lowercase" : true ,
4+ "attr-value-double-quotes" : true ,
5+ "attr-value-not-empty" : false ,
6+ "attr-no-duplication" : true ,
7+ "doctype-first" : false ,
8+ "tag-pair" : true ,
9+ "tag-self-close" : false ,
10+ "spec-char-escape" : false ,
11+ "id-unique" : true ,
12+ "src-not-empty" : true ,
13+ "title-require" : false ,
14+ "alt-require" : true ,
15+ "doctype-html5" : true ,
16+ "id-class-value" : false ,
17+ "style-disabled" : false ,
18+ "inline-style-disabled" : false ,
19+ "inline-script-disabled" : false ,
20+ "space-tab-mixed-disabled" : " space" ,
21+ "id-class-ad-disabled" : false ,
22+ "href-abs-or-rel" : false ,
23+ "attr-unsafe-chars" : true ,
24+ "head-script-disabled" : false
25+ }
Original file line number Diff line number Diff line change 1+ ---
2+ # ##########################################
3+ # These are the rules used for #
4+ # linting all the yaml files in the stack #
5+ # NOTE: #
6+ # You can disable line with: #
7+ # # yamllint disable-line #
8+ # ##########################################
9+ rules :
10+ braces :
11+ level : warning
12+ min-spaces-inside : 0
13+ max-spaces-inside : 0
14+ min-spaces-inside-empty : 1
15+ max-spaces-inside-empty : 5
16+ brackets :
17+ level : warning
18+ min-spaces-inside : 0
19+ max-spaces-inside : 0
20+ min-spaces-inside-empty : 1
21+ max-spaces-inside-empty : 5
22+ colons :
23+ level : warning
24+ max-spaces-before : 0
25+ max-spaces-after : 1
26+ commas :
27+ level : warning
28+ max-spaces-before : 0
29+ min-spaces-after : 1
30+ max-spaces-after : 1
31+ comments : disable
32+ comments-indentation : disable
33+ document-end : disable
34+ document-start :
35+ level : warning
36+ present : true
37+ empty-lines :
38+ level : warning
39+ max : 2
40+ max-start : 0
41+ max-end : 0
42+ hyphens :
43+ level : warning
44+ max-spaces-after : 1
45+ indentation :
46+ level : warning
47+ spaces : consistent
48+ indent-sequences : true
49+ check-multi-line-strings : false
50+ key-duplicates : enable
51+ line-length :
52+ level : warning
53+ max : 120
54+ allow-non-breakable-words : true
55+ allow-non-breakable-inline-mappings : true
56+ new-line-at-end-of-file : disable
57+ new-lines :
58+ type : unix
59+ trailing-spaces : disable
You can’t perform that action at this time.
0 commit comments