-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy path.yamllint.yml
More file actions
43 lines (34 loc) · 889 Bytes
/
.yamllint.yml
File metadata and controls
43 lines (34 loc) · 889 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# yamllint configuration
# Relaxed rules for Helm charts
extends: default
rules:
# Allow long lines (common in Helm templates)
line-length:
max: 200
level: warning
# Enforce consistent indentation
indentation:
spaces: 2
indent-sequences: true
check-multi-line-strings: false
# Allow comments without space (common in Helm)
comments:
min-spaces-from-content: 1
# Truthy values - be flexible
truthy:
allowed-values: ["true", "false", "yes", "no"]
check-keys: false
# Don't require document start markers
document-start: disable
# Brackets and braces
braces:
min-spaces-inside: 0
max-spaces-inside: 1
brackets:
min-spaces-inside: 0
max-spaces-inside: 1
ignore: |
# Ignore Helm template files (they contain Go templates, not valid YAML)
charts/*/templates/
# Ignore chart dependencies
charts/*/charts/