forked from devstream-io/devstream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.yamllint.yml
34 lines (34 loc) · 846 Bytes
/
.yamllint.yml
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
extends: default
rules:
brackets: disable # do not check brackets
comments:
require-starting-space: true
min-spaces-from-content: 1 # at leaset 1 space between comment and content
document-start: disable # whether the document must start with '---' is optional
indentation:
spaces: 2
# block sequences should not be indented
# e.g.:
# OK:
# key:
# - value1
# - value2
# NOT OK:
# key:
# - value1
# - value2
indent-sequences: false
line-length: disable
new-line-at-end-of-file: enable # must have a new line at the end of file
trailing-spaces: disable # do not check trailing spaces
truthy: disable # do not check truthy
ignore: |
*.tpl.yaml
*.tpl.yml
*tmpl.yaml
*tmpl.yml
*template.yml
*template.yaml
**/.github/**
**/githubactions/**
**/workflows/**