Add .venv to gitignore

This is to ignore local python virtual envs setup for dev scripts

Signed-off-by: Joshua Moody <joshua.moody@suse.com>
This commit is contained in:
Joshua Moody 2022-05-12 15:24:41 +02:00 committed by David Ko
parent b2c5f30d16
commit 8a84fdbe38

5
.gitignore vendored
View File

@ -1,4 +1,7 @@
# ignores all goland project folders and files # ignores all goland project folders and files
.idea .idea
*.iml *.iml
*.ipr *.ipr
# python venv for dev scripts
.venv