forked from openshift-hyperfleet/architecture
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.yamllint
More file actions
27 lines (26 loc) · 903 Bytes
/
.yamllint
File metadata and controls
27 lines (26 loc) · 903 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
extends: default
rules:
# Disable document-start requirement (---) - not all YAML files need it
document-start: disable
# Disable line length limit - YAML config templates often have long lines
line-length: disable
# Allow multiple spaces for alignment in comments
comments:
min-spaces-from-content: 1
# Relax indentation to allow flexible formatting
indentation:
spaces: consistent
indent-sequences: whatever
# Disable truthy check - config files may use yes/no/on/off values
truthy: disable
# Disable trailing spaces - existing config templates have trailing spaces
trailing-spaces: disable
# Allow blank lines in YAML files
empty-lines: disable
# Disable newline at end of file requirement
new-line-at-end-of-file: disable
# Disable comments indentation check
comments-indentation: disable
# Relax braces spacing
braces:
max-spaces-inside: -1