We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 975e2d6 commit a4e4e59Copy full SHA for a4e4e59
1 file changed
.yamllint
@@ -8,12 +8,13 @@ yaml-files:
8
9
# https://yamllint.readthedocs.io/en/stable/rules.html
10
rules:
11
- comments: disable
12
- comments-indentation: disable
13
- document-start: disable
+ truthy: disable # do not check for strict true / false boolean values
+ comments: disable # disable syntax checking of comments
+ comments-indentation: disable # disable indentation checks for comments
14
+ document-start: disable # do not require the document start marker
15
empty-lines:
- level: warning
16
+ level: warning # only warn about empty lines
17
indentation:
- spaces: consistent
18
+ spaces: consistent # pass lint if spaces are used for indentation and multiple of spaces is consistent through a file
19
line-length:
- max: 99
20
+ max: 99 # allow lines up to 99 chars
0 commit comments