mirror of
https://github.com/opdavies/build-configs.git
synced 2025-09-06 03:15:34 +01:00
feat(gitignore): add additional ignored paths
This commit is contained in:
parent
696aa5d617
commit
02774b820b
5 changed files with 30 additions and 0 deletions
|
@ -10,3 +10,7 @@ npm-debug.log*
|
|||
pnpm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
{% for path in git.ignore %}
|
||||
{{ path }}
|
||||
{% endfor %}
|
||||
|
|
|
@ -40,3 +40,7 @@ vendor/
|
|||
.env
|
||||
docker-compose.override.yaml
|
||||
{% endif %}
|
||||
|
||||
{% for path in git.ignore %}
|
||||
{{ path }}
|
||||
{% endfor %}
|
||||
|
|
|
@ -7,3 +7,7 @@ node_modules
|
|||
.env
|
||||
docker-compose.override.yaml
|
||||
{% endif %}
|
||||
|
||||
{% for path in git.ignore %}
|
||||
{{ path }}
|
||||
{% endfor %}
|
||||
|
|
|
@ -43,3 +43,7 @@ override.tf.json
|
|||
terraform.rc
|
||||
|
||||
# End of https://www.toptal.com/developers/gitignore/api/terraform
|
||||
|
||||
{% for path in git.ignore %}
|
||||
{{ path }}
|
||||
{% endfor %}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue