From 5e2de8119834cb3d4c732545d836f79032e3a93e Mon Sep 17 00:00:00 2001 From: nelnog Date: Wed, 16 Feb 2022 10:29:38 -0800 Subject: [PATCH] cleaned gitignore and add comments --- .gitignore | 62 ++++++++++++++++++++++++------------------------------ 1 file changed, 28 insertions(+), 34 deletions(-) diff --git a/.gitignore b/.gitignore index a2bb0798..9ec722bd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,21 +1,20 @@ +# Byte-compiled DLL and Shared Library files *.py[cod] - -# C extensions *.so # Packages *.egg -*.egg-info -dist -build -eggs -parts -bin -var -sdist -develop-eggs +*.egg-info/ .installed.cfg -lib64 +bin/ +build/ +develop-eggs/ +dist/ +eggs/ +lib64/ +parts/ +sdist/ +var/ # Versioning .python-version @@ -31,34 +30,29 @@ Icon _build _sources _static +coverage.xml +exp/ objects.inv searchindex.js -# MS Visual Studio (PyTools) -obj -*.pyproj -*.sln -*.suo - # virtaulenv env/ env*/ venv*/ .venv*/ -# PyCharm Project files -.idea/ - -# export testing directories -exp/ - -_extras/ -*.sublime-* -site/ - -.vscode/settings.json -coverage.xml -.vscode/launch.json -.coverage -.vscode/tasks.json -todo.txt +# Editor and IDE specific files +# Since contributors may want to user a variety of development tools it is +# recommended that editor specific file types be ignored globally by each +# contributor via a global gitignore. Instructions for setting up a global +# ignore file can be found here: +# https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files +# (Configuring ignored files for all repositories on your computer) +# Examples of such files are: +# MS Visual Studio (PyTools): +# obj +# *.suo +# PyCharm: +# .idea/ +# VS Code: +# .vscode/settings.json \ No newline at end of file