mirror of
https://github.com/opdavies/build-configs.git
synced 2025-01-22 18:27:31 +00:00
feat(flake): ignore .direnv by default
This commit is contained in:
parent
02774b820b
commit
7c95164fee
|
@ -11,6 +11,10 @@ pnpm-debug.log*
|
||||||
yarn-debug.log*
|
yarn-debug.log*
|
||||||
yarn-error.log*
|
yarn-error.log*
|
||||||
|
|
||||||
|
{% if flake is defined %}
|
||||||
|
.dir-env/
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
{% for path in git.ignore %}
|
{% for path in git.ignore %}
|
||||||
{{ path }}
|
{{ path }}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
|
@ -41,6 +41,10 @@ vendor/
|
||||||
docker-compose.override.yaml
|
docker-compose.override.yaml
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
{% if flake is defined %}
|
||||||
|
.dir-env/
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
{% for path in git.ignore %}
|
{% for path in git.ignore %}
|
||||||
{{ path }}
|
{{ path }}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
|
@ -8,6 +8,10 @@ node_modules
|
||||||
docker-compose.override.yaml
|
docker-compose.override.yaml
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
{% if flake is defined %}
|
||||||
|
.dir-env/
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
{% for path in git.ignore %}
|
{% for path in git.ignore %}
|
||||||
{{ path }}
|
{{ path }}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
|
@ -44,6 +44,10 @@ terraform.rc
|
||||||
|
|
||||||
# End of https://www.toptal.com/developers/gitignore/api/terraform
|
# End of https://www.toptal.com/developers/gitignore/api/terraform
|
||||||
|
|
||||||
|
{% if flake is defined %}
|
||||||
|
.dir-env/
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
{% for path in git.ignore %}
|
{% for path in git.ignore %}
|
||||||
{{ path }}
|
{{ path }}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
Loading…
Reference in a new issue