forked from ansible/ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix YAML source and check it on Shippable (ansible#15678)
Fix YAML source and check it on Shippable
- Loading branch information
1 parent
4fe8fe3
commit 4d48711
Showing
5 changed files
with
30 additions
and
4 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,22 @@ | ||
extends: default | ||
|
||
# Disable all cosmetic rules | ||
# (see https://github.com/ansible/ansible/pull/15470#issuecomment-214437876) | ||
# Only keep 'key-duplicates' and 'new-lines: {type: unix}' checks enabled. | ||
|
||
rules: | ||
braces: disable | ||
brackets: disable | ||
colons: disable | ||
commas: disable | ||
comments: disable | ||
comments-indentation: disable | ||
document-start: disable | ||
empty-lines: disable | ||
hyphens: disable | ||
indentation: disable | ||
key-duplicates: enable | ||
line-length: disable | ||
new-line-at-end-of-file: disable | ||
new-lines: {type: unix} | ||
trailing-spaces: disable |
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ language: python | |
|
||
env: | ||
matrix: | ||
- TEST=code-smell | ||
- TEST=code-smell INSTALL_DEPS=1 | ||
|
||
matrix: | ||
include: | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,6 @@ | |
- '"val1" in test_env2.stdout_lines' | ||
|
||
- hosts: testhost | ||
tasks: | ||
vars: | ||
- test1: | ||
key1: val1 | ||
|
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