Skip to content

Commit 9914acb

Browse files
Update .gitignore
1 parent 8c9e9c0 commit 9914acb

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

.gitignore

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ __pycache__/**/
1212
*.pyd
1313
*.pyc
1414

15+
1516
# Common typo/mistake variants
1617
pycache/
1718
PyCache/
@@ -51,12 +52,17 @@ venv_env/
5152
.Python
5253
build/
5354
dist/
55+
parts/
5456
sdist/
5557
wheels/
5658
downloads/
5759
.eggs/
5860
*.egg
5961
*.egg-info/
62+
lib/
63+
lib64/
64+
var/
65+
share/python-wheels/
6066
.installed.cfg
6167
MANIFEST
6268

@@ -115,6 +121,7 @@ site/
115121
# -------------------------
116122
# IDEs
117123
# -------------------------
124+
.idea
118125
.idea/
119126
.vscode/
120127
.spyderproject
@@ -182,6 +189,33 @@ Thumbs.db
182189
*~
183190
*.bak
184191

192+
# -------------------------
193+
# SQLite temporary and ShowYourWork database files
194+
# -------------------------
195+
196+
_showyourwork.sqlite
197+
_showyourwork.sqlite-journal
198+
_showyourwork.sqlite-wal
199+
_showyourwork.sqlite-shm
200+
_showyourwork.*
201+
showyourwork.sqlite
202+
showyourwork.sqlite-journal
203+
showyourwork.sqlite-wal
204+
showyourwork.sqlite-shm
205+
*.sqlite
206+
*.sqlite3
207+
208+
# -------------------------
209+
# Translations
210+
# -------------------------
211+
*.mo
212+
*.pot
213+
214+
# -------------------------
215+
# Cython debug symbols
216+
# -------------------------
217+
cython_debug/
218+
185219
# -------------------------
186220
# Example custom ignored file
187221
# -------------------------

0 commit comments

Comments
 (0)