-
Notifications
You must be signed in to change notification settings - Fork 28
/
.yamllint
37 lines (35 loc) · 930 Bytes
/
.yamllint
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
---
extends: default
# Relaxed set of rules copied from https://yamllint.readthedocs.io/en/stable/configuration.html
rules:
braces:
level: warning
max-spaces-inside: 1
brackets:
level: warning
max-spaces-inside: 1
colons:
level: warning
max-spaces-before: 0
max-spaces-after: 6
commas:
level: warning
comments: disable
comments-indentation: disable
document-start: disable
empty-lines:
level: warning
hyphens:
level: warning
indentation:
level: warning
indent-sequences: consistent
line-length:
max: 160
level: warning
allow-non-breakable-inline-mappings: true
truthy: disable
# Ignore templated yaml files since yamllint can't properly interpret them
ignore:
- "**/beetmoverscript/tests/templates"
- "**/beetmoverscript/src/beetmoverscript/templates"