We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0867685 + 3547c4f commit cfa9ba5Copy full SHA for cfa9ba5
.yamllint
@@ -8,6 +8,15 @@ rules:
8
# this behavior.
9
comments-indentation: disable
10
11
+ # yamllint does not allow inline mappings that exceed the line length by
12
+ # default. There are many scenarios where the inline mapping may be a key,
13
+ # hash, or other long value that would exceed the line length but cannot
14
+ # reasonably be broken across lines.
15
+ line-length:
16
+ # This rule implies the allow-non-breakable-words rule
17
+ allow-non-breakable-inline-mappings: true
18
+ # Allows a 10% overage from the default limit of 80
19
+ max: 88
20
# yamllint doesn't like when we use yes and no for true and false,
21
# but that's pretty standard in Ansible.
22
truthy: disable
0 commit comments