Prevent generating roles that do not pass linting (#63709)
Fixes bug where newly created role fails linting due to extra space at end of line: [201] Trailing whitespace
This commit is contained in:
parent
7aac7a56da
commit
a6e610a9ed
3 changed files with 6 additions and 6 deletions
|
@ -50,6 +50,6 @@ galaxy_info:
|
|||
dependencies: []
|
||||
# List your role dependencies here, one per line. Be sure to remove the '[]' above,
|
||||
# if you add dependencies to this list.
|
||||
{% for dependency in dependencies %}
|
||||
{% for dependency in dependencies %}
|
||||
#- {{ dependency }}
|
||||
{%- endfor %}
|
||||
{%- endfor %}
|
||||
|
|
|
@ -47,6 +47,6 @@ galaxy_info:
|
|||
dependencies: []
|
||||
# List your role dependencies here, one per line. Be sure to remove the '[]' above,
|
||||
# if you add dependencies to this list.
|
||||
{%- for dependency in dependencies %}
|
||||
{%- for dependency in dependencies %}
|
||||
#- {{ dependency }}
|
||||
{%- endfor %}
|
||||
{%- endfor %}
|
||||
|
|
|
@ -57,6 +57,6 @@ dependencies: []
|
|||
# List your role dependencies here, one per line.
|
||||
# Be sure to remove the '[]' above if you add dependencies
|
||||
# to this list.
|
||||
{%- for dependency in dependencies %}
|
||||
{%- for dependency in dependencies %}
|
||||
#- {{ dependency }}
|
||||
{%- endfor %}
|
||||
{%- endfor %}
|
||||
|
|
Loading…
Reference in a new issue