Skip to content

Commit 509c5e5

Browse files
committed
added
Signed-off-by: Mark Bolwell <[email protected]>
1 parent 7537dcb commit 509c5e5

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

.yamllint

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
extends: default
3+
4+
ignore: |
5+
tests/
6+
molecule/
7+
.github/
8+
.gitlab-ci.yml
9+
*molecule.yml
10+
11+
rules:
12+
indentation:
13+
# Requiring 4 space indentation
14+
spaces: 4
15+
# Requiring consistent indentation within a file, either indented or not
16+
indent-sequences: consistent
17+
braces:
18+
max-spaces-inside: 1
19+
level: error
20+
brackets:
21+
max-spaces-inside: 1
22+
level: error
23+
empty-lines:
24+
max: 1
25+
line-length: disable
26+
key-duplicates: enable
27+
new-line-at-end-of-file: enable
28+
new-lines:
29+
type: unix
30+
trailing-spaces: enable
31+
truthy:
32+
allowed-values: ['true', 'false']
33+
check-keys: true

0 commit comments

Comments
 (0)