Ignore .venv directory in the VSCode workspace

This commit is contained in:
Eryn Wells 2023-02-18 10:40:55 -08:00
parent 292fa852f9
commit 8fc5206e95

View file

@ -6,6 +6,9 @@
], ],
"settings": { "settings": {
"editor.formatOnSave": true, "editor.formatOnSave": true,
"python.analysis.typeCheckingMode": "basic" "python.analysis.typeCheckingMode": "basic",
"files.exclude": {
".venv/": true
}
} }
} }