Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes several changes aimed at cleaning up and improving the readability of the
ansible-lint.yml
file:Removal of the
trailing-spaces
rule fromskip_list
. This rule was removed in order to enforce the rule and ensure that there are no trailing spaces in the YAML files.Removal of the
schema[tasks]
rule fromskip_list
. This rule is no longer necessary and thus has been removed.Removal of
role-name[path]
andrun-once[task]
items fromskip_list
. These items are no longer needed. Therole-name[path]
item was removed because it is redundant with therole-name
item. Therun-once[task]
item was removed because it is not used in the project.Removal of commented out lines. These lines were not providing any value and were just cluttering the file.
All these changes are aimed at improving the readability and efficiency of the
ansible-lint.yml
file.