-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy path.yamllint.yaml
More file actions
40 lines (33 loc) · 812 Bytes
/
.yamllint.yaml
File metadata and controls
40 lines (33 loc) · 812 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
---
extends: default
rules:
# Allow longer lines for URLs and complex manifests
line-length:
max: 180
level: warning
# Disable document-start requirement (---) as it's not critical
document-start: disable
# Allow at least 1 space between comment and content
comments:
min-spaces-from-content: 1
# Allow truthy values (on/off, yes/no) commonly used in Kubernetes
truthy:
allowed-values: ['true', 'false', 'on', 'off', 'yes', 'no']
check-keys: false
# Indentation should be 2 spaces
indentation:
spaces: 2
indent-sequences: true
# Allow empty values (common in Kubernetes)
empty-values:
forbid-in-block-mappings: false
forbid-in-flow-mappings: false
# Ignore directories
ignore: |
bin/
.git/
docs/
scripts/
.github/
.claude/
charts/