From 7ac700ca91b64430d1ce87700808d1ec07df2e4a Mon Sep 17 00:00:00 2001 From: Galen Guyer Date: Thu, 25 Feb 2021 16:15:05 -0500 Subject: update gitignore --- .gitignore | 43 +++++++++++++++++++++++++++++++++++++++---- 1 file changed, 39 insertions(+), 4 deletions(-) (limited to '.gitignore') 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 -- cgit v1.2.3