-
Notifications
You must be signed in to change notification settings - Fork 208
/
.yamllint
48 lines (46 loc) · 907 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
38
39
40
41
42
43
44
45
46
47
48
---
extends: default
ignore-from-file: .gitignore
rules:
indentation:
spaces: 2
check-multi-line-strings: false
line-length:
max: 160
allow-non-breakable-words: true
allow-non-breakable-inline-mappings: false
level: error
document-start:
present: true
level: error
key-duplicates: enable
trailing-spaces: enable
hyphens:
max-spaces-after: 1
level: error
empty-lines:
max: 2
max-start: 0
max-end: 0
level: error
commas:
max-spaces-before: 0
min-spaces-after: 1
max-spaces-after: 1
level: error
colons:
max-spaces-before: 0
max-spaces-after: 1
level: error
brackets:
min-spaces-inside: 0
max-spaces-inside: 0
level: error
braces:
min-spaces-inside: 0
max-spaces-inside: 0
level: error
truthy: disable
comments-indentation: enable
comments:
min-spaces-from-content: 1