Sort .gitignore paths

This commit is contained in:
Oliver Davies 2024-02-12 19:58:46 +00:00
parent 3d0a8215f9
commit 98650ac11c
4 changed files with 4 additions and 4 deletions

View file

@ -12,6 +12,6 @@ docker-compose.override.yaml
.dir-env/ .dir-env/
{% endif %} {% endif %}
{% for path in git.ignore %} {% for path in git.ignore|default([])|sort %}
{{ path }} {{ path }}
{% endfor %} {% endfor %}

View file

@ -53,7 +53,7 @@ docker-compose.override.yaml
!/{{ drupal.docroot }}/*/custom/** !/{{ drupal.docroot }}/*/custom/**
{% endif %} {% endif %}
{% for path in git.ignore|sort %} {% for path in git.ignore|default([])|sort %}
{{ path }} {{ path }}
{% endfor %} {% endfor %}

View file

@ -7,6 +7,6 @@
/.direnv/ /.direnv/
{% endif %} {% endif %}
{% for path in git.ignore %} {% for path in git.ignore|default([])|sort %}
{{ path }} {{ path }}
{% endfor %} {% endfor %}

View file

@ -48,6 +48,6 @@ terraform.rc
.dir-env/ .dir-env/
{% endif %} {% endif %}
{% for path in git.ignore %} {% for path in git.ignore|default([])|sort %}
{{ path }} {{ path }}
{% endfor %} {% endfor %}