From 1775d389046dc9f313d5dc59e7533b3c9a963f53 Mon Sep 17 00:00:00 2001 From: Thinh Nguyen Date: Tue, 28 Nov 2023 10:40:54 -0600 Subject: [PATCH] Update .gitignore --- .gitignore | 138 +++++++++++++++++++++++++---------------------------- 1 file changed, 64 insertions(+), 74 deletions(-) diff --git a/.gitignore b/.gitignore index 27ae774..e1522db 100644 --- a/.gitignore +++ b/.gitignore @@ -1,87 +1,77 @@ -# Byte-compiled / optimized / DLL files -__pycache__/ +# Temporary and binary files +*~ *.py[cod] -*$py.class +*.so +*.cfg +!.isort.cfg +!setup.cfg +*.orig +*.log +*.pot +**/__pycache__ +.cache/* +.*.swp +*/.ipynb_checkpoints/* +.DS_Store +.mypy_cache/* -# Distribution, packaging, PyInstaller -.Python -env/ -build/ -develop-eggs/ -dist/ -downloads/ -eggs/ -.eggs/ -lib/ -lib64/ -parts/ -sdist/ -var/ -wheels/ -*.egg-info/ -.installed.cfg +# Project files +.ropeproject +.project +.pydevproject +.settings +.idea +.vscode +tags +profile_default/ +ipython_config.py + +# Package files *.egg -*.manifest -*.spec -pip-log.txt -pip-delete*.txt +*.eggs/ +.installed.cfg +*.egg-info +environment.lock.yml -# Unit test / coverage reports -htmlcov/ -.tox/ +# Unittest and coverage +htmlcov/* .coverage .coverage.* -.cache -nosetests.xml +.tox/* +.nox/* +junit*.xml coverage.xml -*.cover -.hypothesis/ -.pytest_cache/ +.pytest_cache/* -# C extension, Translations -*.so -*.mo -*.pot +# Build and docs folder/files +build/* +site/* +dist/* +sdist/* +docs/api/* +docs/_rst/* +docs/_build/* +cover/* +MANIFEST -# editors: vscode, emacs, Mac -.vscode -**/*~ -**/#*# -**/.#* -.DS_Store +# Per-project virtualenvs +.venv*/ +.conda*/ -# Django, Flask, Scrapy, Sphinx, mkdocs -# PyBuilder, Jupyter, SageMath, celery beat -*.log -local_settings.py -instance/ -.webassets-cache -.scrapy -scratchpaper.* -docs/_build/ -/site -target/ -.ipynb_checkpoints -celerybeat-schedule -*.sage.py +# Configuration files +*.env -# dotenv, virtualenv, pyenv, mypy -./.env -.venv -venv/ -ENV/ -.python-version -.mypy_cache/ - -# Spyder/Rope project settings -.spyderproject -.spyproject -.ropeproject - -# datajoint, notes, nwb export +# DataJoint files dj_local_c*.json -temp* -*nwb +dj_remote_c*.json +.datajoint_config.json + +# Misc files/folders +pyproject.code-workspace +scratch/* +src/deangelis_lab/experimental/* +.junk/* -# mkdocs documentation -docs/site +# Secret keys +*.ssh +*.pem