-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.yamllint.yaml
More file actions
26 lines (23 loc) · 678 Bytes
/
.yamllint.yaml
File metadata and controls
26 lines (23 loc) · 678 Bytes
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
---
extends: default
ignore:
# yamllint can't parse these files as yaml because of j2 templating
- template/.github/ISSUE_TEMPLATE/bug_report.yml.j2
- template/deploy/helm/\[\[operator\]\]/Chart.yaml.j2
- template/deploy/helm/**/templates
rules:
line-length: disable
truthy:
check-keys: false
comments:
min-spaces-from-content: 1 # Needed due to https://github.com/adrienverge/yamllint/issues/443
comments-indentation: disable # This is generally useless and interferes with commented example values
braces:
max-spaces-inside: 1
max-spaces-inside-empty: 0
yaml-files:
- '*.yaml'
- '*.yml'
- '.yamllint'
- '*.yaml.j2'
- '*.yml.j2'