boxed / django-fastdev

An app to make it safer, faster and more fun to develop in Django
BSD 3-Clause "New" or "Revised" License
169 stars 14 forks source link

venv in gitignore check unnecessary with virtualenv #33

Open adamchainz opened 1 year ago

adamchainz commented 1 year ago

virtualenv drops an "ignore all" .gitignore file into any virtualenvs it creates:

$ cat .venv/.gitignore
# created by virtualenv automatically
*

This feature will probably be upstreamed in Python too: https://github.com/python/cpython/issues/83417 . At that point, the fastdev check won't be required.