Skip to content

Commit 010f833

Browse files
committed
Updated gitignore
1 parent 32490b0 commit 010f833

File tree

1 file changed

+27
-4
lines changed

1 file changed

+27
-4
lines changed

.gitignore

+27-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11

2-
# Created by https://www.toptal.com/developers/gitignore/api/venv,python,git
3-
# Edit at https://www.toptal.com/developers/gitignore?templates=venv,python,git
2+
# Created by https://www.toptal.com/developers/gitignore/api/git,python,venv,dotenv,linux
3+
# Edit at https://www.toptal.com/developers/gitignore?templates=git,python,venv,dotenv,linux
4+
5+
### dotenv ###
6+
.env
47

58
### Git ###
69
# Created by git for backups. To disable backups in Git:
@@ -17,6 +20,21 @@
1720
*_LOCAL_*.txt
1821
*_REMOTE_*.txt
1922

23+
### Linux ###
24+
*~
25+
26+
# temporary files which can be created if a process still has a handle open of a deleted file
27+
.fuse_hidden*
28+
29+
# KDE directory preferences
30+
.directory
31+
32+
# Linux trash folder which might appear on any partition or disk
33+
.Trash-*
34+
35+
# .nfs files are created when an open file is removed but is still being accessed
36+
.nfs*
37+
2038
### Python ###
2139
# Byte-compiled / optimized / DLL files
2240
__pycache__/
@@ -70,6 +88,7 @@ coverage.xml
7088
*.py,cover
7189
.hypothesis/
7290
.pytest_cache/
91+
pytestdebug.log
7392

7493
# Translations
7594
*.mo
@@ -90,6 +109,7 @@ instance/
90109

91110
# Sphinx documentation
92111
docs/_build/
112+
doc/_build/
93113

94114
# PyBuilder
95115
target/
@@ -122,13 +142,13 @@ celerybeat.pid
122142
*.sage.py
123143

124144
# Environments
125-
.env
126145
.venv
127146
env/
128147
venv/
129148
ENV/
130149
env.bak/
131150
venv.bak/
151+
pythonenv*
132152

133153
# Spyder project settings
134154
.spyderproject
@@ -151,6 +171,9 @@ dmypy.json
151171
# pytype static type analyzer
152172
.pytype/
153173

174+
# profiling data
175+
.prof
176+
154177
### venv ###
155178
# Virtualenv
156179
# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
@@ -163,4 +186,4 @@ dmypy.json
163186
pyvenv.cfg
164187
pip-selfcheck.json
165188

166-
# End of https://www.toptal.com/developers/gitignore/api/venv,python,git
189+
# End of https://www.toptal.com/developers/gitignore/api/git,python,venv,dotenv,linux

0 commit comments

Comments
 (0)