Skip to content

Commit adba7de

Browse files
committed
Add yaml lint config file
Signed-off-by: Mauro Morales <[email protected]>
1 parent e62fa97 commit adba7de

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.yamllint

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
extends: default
2+
3+
rules:
4+
# 80 chars should be enough, but don't fail if a line is longer
5+
line-length:
6+
max: 150
7+
level: warning
8+
9+
# accept both key:
10+
# - item
11+
#
12+
# and key:
13+
# - item
14+
indentation:
15+
indent-sequences: whatever
16+
17+
truthy:
18+
check-keys: false
19+
20+
document-start:
21+
present: false

0 commit comments

Comments
 (0)