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:
Sorin Sbarnea 2019-10-22 16:26:07 +01:00 committed by Sam Doran
parent 7aac7a56da
commit a6e610a9ed
3 changed files with 6 additions and 6 deletions

View file

@ -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 %}

View file

@ -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 %}

View file

@ -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 %}