forked from daos-stack/daos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.yamllint.yaml
37 lines (34 loc) · 831 Bytes
/
.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
# Yamllint configuration file, used by github actions and commit hooks.
#
# Disables some tests for src/tests/ftest due to existing errors.
# The yamllint tool will use .yamllint in preference to this file and it is in .gitignore so users
# can create one locally to overrule these settings for local commit hooks.
extends: default
rules:
line-length:
max: 100
ignore: |
/src/tests/ftest/
/src/vos/storage_estimator/
indentation:
spaces: 2
commas:
ignore: /src/tests/ftest/
truthy:
allowed-values: ['true', 'false', 'True', 'False']
check-keys: false
document-start:
present: false
document-end:
present: false
comments:
ignore: |
/src/tests/ftest/
/utils/config/
ignore: |
/src/control/vendor/
/.git/
/src/rdb/raft/
/venv/
/build/
/install/