Skip to content

Commit bbd1159

Browse files
committed
Organize and add to gitignore
Organized into groups and added header comments, following example from https://paulvanderlaken.com/2020/05/12/create-perfect-gitignore-file-for-project/ and https://github.com/rubiagatra/data-science-with-python/blob/master/.gitignore
1 parent fb81c8c commit bbd1159

File tree

2 files changed

+22
-12
lines changed

2 files changed

+22
-12
lines changed

.gitignore

Lines changed: 22 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
1+
# Editors & IDEs
2+
.vscode/
3+
4+
# Jupyter Notebook
15
.ipynb_checkpoints
6+
7+
# Distribution / packaging
28
build
39
build/*
410
_build
511
_build/*
612
.bzr
7-
.coverage
8-
.coverage/*
913
develop-eggs
1014
dist
1115
dist/*
@@ -15,19 +19,29 @@ downloads
1519
*.egg-info
1620
eggs
1721
fake-eggs
18-
.hg
19-
htmlcov
2022
.installed.cfg
21-
*.mo
2223
.mr.developer.cfg
2324
parts
25+
26+
# Byte-compiled / optimized / DLL files
2427
*.pyc
2528
__pycache__
2629
__pycache__/*
2730
*.pyo
2831
.svn
29-
*.tmp*
32+
33+
# Unit test / coverage reports
34+
htmlcov
3035
.tox
3136
.tox/*
32-
stats.dat
33-
.ropeproject
37+
.coverage
38+
.coverage/*
39+
40+
# Translations
41+
*.mo
42+
43+
44+
# Stashes, etc.
45+
.hg
46+
*.tmp*
47+
tests/_LargeFileStash

tests/.gitignore

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)