git: ignore the .venv directory

Add the `.venv` directory to gitignore, as this is the
python-recommended directory name for virtual envs. This avoids having
developers mistakenly commit changes to include this directory.

Signed-off-by: Ryan Turner <ryan@turnrye.com>
This commit is contained in:
Ryan Turner 2026-03-27 07:24:08 -05:00 committed by silseva
parent 801fc8dd31
commit 3822d51136

3
.gitignore vendored
View file

@ -48,6 +48,9 @@
# Python byte-compiled
*/__pycache__
# Python virtual environments
.venv/
# Kdevelop files
*.kdev4
.kdev4/