Skip to content

Commit 94bd5cc

Browse files
authored
update with wider range of gitignore directives
Update the git ignore file with a wider range of gitignore directives, possibly covering residue/cache files.
1 parent 001bc35 commit 94bd5cc

File tree

1 file changed

+35
-6
lines changed

1 file changed

+35
-6
lines changed

.gitignore

Lines changed: 35 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,36 @@
1-
# Created by .ignore support plugin (hsz.mobi)
2-
.idea
3-
.pytest_cache
4-
.dist
5-
*.pyc
6-
*.egg-info
1+
# Byte-compiled
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# Distribution / packaging
7+
.Python
8+
build/
9+
develop-eggs/
10+
dist/
11+
*.egg-info/
12+
.installed.cfg
713
*.egg
14+
MANIFEST
15+
16+
# Installer logs
17+
pip-log.txt
18+
pip-delete-this-directory.txt
19+
20+
# Unit test / coverage reports
21+
htmlcov/
22+
.tox/
23+
.nox/
24+
.coverage
25+
.coverage.*
26+
.cache
27+
coverage.xml
28+
*.cover
29+
.pytest_cache/
30+
31+
# Jupyter Notebook
32+
.ipynb_checkpoints
33+
34+
# Environments
35+
.env
36+
.venv

0 commit comments

Comments
 (0)