File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2727 env :
2828 VALIDATE_CHECKOV : false
2929 VALIDATE_GITHUB_ACTIONS_ZIZMOR : false
30+ VALIDATE_MARKDOWN_PRETTIER : false
31+ VALIDATE_YAML_PRETTIER : false
3032 # To report GitHub Actions status checks
3133 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 1+ ---
2+ yaml-files:
3+ - '*.yaml'
4+ - '*.yml'
5+ - '.yamllint'
6+
7+ ignore: |
8+ .github/
9+
10+ rules:
11+ indentation:
12+ spaces: 2
13+ indent-sequences: no
14+ trailing-spaces: {}
15+ truthy:
16+ allowed-values:
17+ - 'yes'
18+ - 'no'
19+ - 'true'
20+ - 'false'
21+ new-lines:
22+ type: unix
23+ new-line-at-end-of-file: enable
24+ key-duplicates: {}
25+ hyphens:
26+ max-spaces-after: 1
27+ empty-lines:
28+ max: 2
29+ document-start:
30+ present: yes
31+ document-end:
32+ present: no
33+ colons:
34+ max-spaces-before: 0
35+ max-spaces-after: 1
36+ commas:
37+ max-spaces-before: 0
38+ min-spaces-after: 1
39+ max-spaces-after: 1
You can’t perform that action at this time.
0 commit comments