-
Notifications
You must be signed in to change notification settings - Fork 325
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates linter configurations. Signed-off-by: Ryan Johnson <[email protected]>
- Loading branch information
1 parent
66c1ea9
commit e77d022
Showing
5 changed files
with
33 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
# Sets the kind of files to lint. | ||
kinds: | ||
- playbook | ||
|
||
# Skips the line-length rule. | ||
skip_list: | ||
- line-length |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
|
||
# Sets the rules to ignore. | ||
ignored: | ||
- DL3008 | ||
- DL3015 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,31 @@ | ||
--- | ||
|
||
# MD013: Line length | ||
# Disables rule MD013. Checks for line length. | ||
MD013: false | ||
|
||
# MD026: Trailing Punctuation in Header | ||
# Customizes rule MD026. Checks for trailing punctuation in headers. | ||
MD026: | ||
punctuation: ".,;:" | ||
|
||
# MD033" Inline HTML | ||
# Disables rule MD024. Checks for multiple headers with the same content. | ||
MD024: false | ||
|
||
# Disables rule MD033. Checks for inline HTML. | ||
MD033: false | ||
|
||
# Disables rule MD041. Checks if the first line in file is a top level header. | ||
MD041: false | ||
|
||
# Disables rule MD045. Checks if images have alternate text. | ||
MD045: false | ||
|
||
# Disables rule MD046. Checks for code block style. | ||
MD046: false | ||
|
||
# Disables rule MD053. Checks if link image reference definitions are needed. | ||
MD053: false | ||
|
||
# Disables rule MD055. Checks for consistent list style. | ||
MD055: false | ||
|
||
# Disables rule MD056. Checks for table column count. | ||
MD056: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters