Skip to content

Commit 3547c4f

Browse files
committed
Increase the maximum line length in the yamllint configuration
Increase the line length maximum from the default of 80 to 88. This 10% increase mirrors the line length allowed in other linter configurations such as black.
1 parent 21a68f4 commit 3547c4f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.yamllint

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ rules:
1515
line-length:
1616
# This rule implies the allow-non-breakable-words rule
1717
allow-non-breakable-inline-mappings: true
18-
18+
# Allows a 10% overage from the default limit of 80
19+
max: 88
1920
# yamllint doesn't like when we use yes and no for true and false,
2021
# but that's pretty standard in Ansible.
2122
truthy: disable

0 commit comments

Comments
 (0)