Skip to content

Commit 1a3949e

Browse files
committed
update gitignore
1 parent d21c1d5 commit 1a3949e

1 file changed

Lines changed: 50 additions & 11 deletions

File tree

template/.gitignore

Lines changed: 50 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,72 @@
1+
# Byte-compiled / optimized / DLL files
12
*.py[cod]
2-
*.egg-info
3-
*.eggs
4-
.ipynb_checkpoints
5-
6-
build
7-
dist
8-
.cache
3+
*$py.class
94
__pycache__
105

11-
htmlcov
6+
# Distribution / packaging
7+
.Python
8+
build/
9+
develop-eggs/
10+
dist/
11+
downloads/
12+
eggs/
13+
.eggs/
14+
lib/
15+
lib64/
16+
parts/
17+
sdist/
18+
var/
19+
wheels/
20+
share/python-wheels/
21+
*.egg-info/
22+
.installed.cfg
23+
*.egg
24+
MANIFEST
25+
26+
# jupyter notebook
27+
.ipynb_checkpoints
28+
29+
# Unit test / coverage reports
30+
htmlcov/
1231
.coverage
32+
.coverage.*
1333
coverage.xml
34+
.cache
1435
.pytest_cache
15-
.tox
36+
.tox/
1637

38+
# Sphinx documentation
1739
docs/_build
1840

1941
# ide
20-
.idea
2142
.eclipse
2243
.vscode
44+
# PyCharm
45+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
46+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
47+
# and can be added to the global gitignore or merged into this file. For a more nuclear
48+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
49+
#.idea/
50+
.spyderproject
51+
.spyproject
2352

2453
# Mac
2554
.DS_Store
2655

2756
# virtual environments
2857
env
58+
.env
2959
env3
60+
.env3
3061
venv
62+
.venv
3163
venv3
64+
.venv3
65+
ENV/
66+
env.bak/
67+
venv.bak/
3268

33-
.swp
69+
# vim
70+
*.swp
71+
*.swo
72+
*.orig

0 commit comments

Comments
 (0)