aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGalen Guyer <galen@galenguyer.com>2021-02-25 16:15:05 -0500
committerGalen Guyer <galen@galenguyer.com>2021-02-25 16:15:05 -0500
commit7ac700ca91b64430d1ce87700808d1ec07df2e4a (patch)
tree91082f2588d93ab21e25cb7c0da4bcd9f867a2e8
parentd1bbe068e77e2504d6e300fdf586ddd8afc29a2f (diff)
update gitignore
-rw-r--r--.gitignore43
1 files changed, 39 insertions, 4 deletions
diff --git a/.gitignore b/.gitignore
index acab611..48d472c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,23 @@
+
+# Created by https://www.toptal.com/developers/gitignore/api/python,vscode,linux
+# Edit at https://www.toptal.com/developers/gitignore?templates=python,vscode,linux
+
+### Linux ###
+*~
+
+# temporary files which can be created if a process still has a handle open of a deleted file
+.fuse_hidden*
+
+# KDE directory preferences
+.directory
+
+# Linux trash folder which might appear on any partition or disk
+.Trash-*
+
+# .nfs files are created when an open file is removed but is still being accessed
+.nfs*
+
+### Python ###
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
@@ -50,6 +70,7 @@ coverage.xml
*.py,cover
.hypothesis/
.pytest_cache/
+pytestdebug.log
# Translations
*.mo
@@ -70,6 +91,7 @@ instance/
# Sphinx documentation
docs/_build/
+doc/_build/
# PyBuilder
target/
@@ -109,6 +131,7 @@ venv/
ENV/
env.bak/
venv.bak/
+pythonenv*
# Spyder project settings
.spyderproject
@@ -128,8 +151,20 @@ dmypy.json
# Pyre type checker
.pyre/
-# Don't commit secrets!
-config.py
+# pytype static type analyzer
+.pytype/
+
+# profiling data
+.prof
-# don't commit data
-data/
+### vscode ###
+.vscode/*
+!.vscode/settings.json
+!.vscode/tasks.json
+!.vscode/launch.json
+!.vscode/extensions.json
+*.code-workspace
+
+# End of https://www.toptal.com/developers/gitignore/api/python,vscode,linux
+
+config.py