We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7537dcb commit 509c5e5Copy full SHA for 509c5e5
.yamllint
@@ -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
22
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