forked from canonical/hotsos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yamllintrc
26 lines (23 loc) · 847 Bytes
/
yamllintrc
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
extends: default
ignore:
- '**/fake_data_root/**'
rules:
# https://yamllint.readthedocs.io/en/stable/rules.html#module-yamllint.rules.document_start
document-start:
present: false
# https://yamllint.readthedocs.io/en/stable/rules.html#module-yamllint.rules.line_length
line-length: disable
# https://yamllint.readthedocs.io/en/stable/rules.html#module-yamllint.rules.anchors
anchors:
forbid-undeclared-aliases: true
forbid-duplicated-anchors: true
forbid-unused-anchors: true
# https://yamllint.readthedocs.io/en/stable/rules.html#module-yamllint.rules.truthy
truthy:
allowed-values: ['true', 'false']
check-keys: true
# https://yamllint.readthedocs.io/en/stable/rules.html#module-yamllint.rules.indentation
indentation:
spaces: 2
indent-sequences: true
check-multi-line-strings: false