-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
So the exclude_paths, enable_list, and skip_list are identical to those in the collection's .ansible-lint file. Solves issue #593. Signed-off-by: Bernd Finger <[email protected]>
- Loading branch information
1 parent
2b34bf9
commit 2ce2a04
Showing
14 changed files
with
144 additions
and
54 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 |
---|---|---|
@@ -1,7 +1,16 @@ | ||
--- | ||
exclude_paths: | ||
- tests/ | ||
enable_list: | ||
- yaml | ||
skip_list: | ||
- ignore-errors # We use ignore_errors for all the assert tasks, which should be acceptable | ||
- schema # We want to allow single digit version numbers in a role's meta/main.yml file. This is allowed as per https://galaxy.ansible.com/docs/contributing/creating_role.html and https://galaxy.ansible.com/api/v1/platforms/?page=6. | ||
- name[template] # Allow templating inside name. During dev and qa, it should be possible to identify cases where it doesn't work | ||
# We don't want to enforce new Ansible versions for Galaxy: | ||
- meta-runtime[unsupported-version] | ||
# We do not want to use checks which are marked as experimental: | ||
- experimental | ||
# We use ignore_errors for all the assert tasks, which should be acceptable: | ||
- ignore-errors | ||
# We want to allow single digit version numbers in a role's meta/main.yml file: | ||
- schema | ||
# Allow templating inside name because it creates more detailed output: | ||
- name[template] |
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
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
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
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
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
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
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,7 +1,16 @@ | ||
--- | ||
exclude_paths: | ||
- tests/ | ||
enable_list: | ||
- yaml | ||
skip_list: | ||
- ignore-errors # We use ignore_errors for all the assert tasks, which should be acceptable | ||
- schema # We want to allow single digit version numbers in a role's meta/main.yml file. This is allowed as per https://galaxy.ansible.com/docs/contributing/creating_role.html and https://galaxy.ansible.com/api/v1/platforms/?page=6. | ||
- name[template] # Allow templating inside name. During dev and qa, it should be possible to identify cases where it doesn't work | ||
# We don't want to enforce new Ansible versions for Galaxy: | ||
- meta-runtime[unsupported-version] | ||
# We do not want to use checks which are marked as experimental: | ||
- experimental | ||
# We use ignore_errors for all the assert tasks, which should be acceptable: | ||
- ignore-errors | ||
# We want to allow single digit version numbers in a role's meta/main.yml file: | ||
- schema | ||
# Allow templating inside name because it creates more detailed output: | ||
- name[template] |