diff options
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 43 |
1 files changed, 39 insertions, 4 deletions
@@ -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 +data.db |