-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.yamllint.yaml
61 lines (49 loc) · 1.15 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
---
extends: default
ignore:
- flux/prometheus-crds/resources.yaml
- flux/cert-manager-crds/resources.yaml
- flux/elastic-crds/resources.yaml
- flux/elastic-crds/operator.yaml
- flux/grafana-crds/resources.yaml
rules:
document-start:
present: true
document-end:
present: false
empty-lines:
max: 1
max-start: 0
max-end: 0
comments:
require-starting-space: true
ignore-shebangs: true
min-spaces-from-content: 1
comments-indentation: {}
indentation:
spaces: consistent
indent-sequences: true
# Taskfiles use variable indentations on multi-line strings for the
# documentation and in-line scripting
check-multi-line-strings: false
line-length:
max: 80
allow-non-breakable-words: true
allow-non-breakable-inline-mappings: true
brackets:
forbid: non-empty
braces:
forbid: non-empty
float-values:
forbid-nan: true
require-numeral-before-decimal: true
quoted-strings:
quote-type: single
required: only-when-needed
allow-quoted-quotes: true
trailing-spaces: {}
truthy:
allowed-values:
- 'true'
- 'false'
check-keys: false