-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy path.yamllint.yaml
63 lines (53 loc) · 1.3 KB
/
.yamllint.yaml
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
---
# This configuration serves as a base for the entire repo
ignore: |
*.encrypted.yaml
*.enc.yaml
**/kubernetes/clusters/**
talos/
.github/workflows/
.taskfiles/
extends: default
rules:
# Disallow duplicate dictionary keys
key-duplicates: enable
# Require consistent indentation
indentation:
spaces: 2
indent-sequences: consistent
check-multi-line-strings: false
# Line length
line-length:
max: 240
level: warning
allow-non-breakable-words: true
allow-non-breakable-inline-mappings: true
# Trailing spaces
trailing-spaces: enable
# Final newline at end of file
new-line-at-end-of-file: enable
# Allow specific syntax for boolean values
truthy:
allowed-values: ['true', 'false', 'on', 'off', 'yes', 'no']
check-keys: false
# Spacing for comments
comments:
require-starting-space: true
min-spaces-from-content: 1
# Consistent spacing in braces
braces:
min-spaces-inside: 0
max-spaces-inside: 1
min-spaces-inside-empty: 0
max-spaces-inside-empty: 0
# Consistent spacing in brackets
brackets:
min-spaces-inside: 0
max-spaces-inside: 0
min-spaces-inside-empty: 0
max-spaces-inside-empty: 0
# Consistent document start/end markers
document-start:
present: true
document-end:
present: false