Skip to content

Commit aadcd22

Browse files
committed
Ignore more things we aren't interested in tracking
Make sure everything has a comment to describe how they are created and why they are being ignored.
1 parent 6d6f94f commit aadcd22

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

.gitignore

+16-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
1-
**/__pycache__/**
2-
.venv/**
1+
# Files and directories created by python
2+
**/__pycache__/
3+
**/.pytest_cache
4+
5+
# A catch all for virtual env directories
6+
.venv*/
7+
venv*/
8+
9+
# PyCharm settings directory
10+
.idea/
11+
12+
# Jupyter related files and directories
13+
*.ipynb
14+
.ipnb_checkpoints/
15+
16+
# Test coverage related files and directories
317
.coverage
418
coverage_html_report

0 commit comments

Comments
 (0)