From ff8ec22262406a978b980d677bbd05e2d421f16c Mon Sep 17 00:00:00 2001 From: David Hoese <david.hoese@ssec.wisc.edu> Date: Tue, 17 Oct 2023 14:52:25 +0000 Subject: [PATCH] Update .gitignore with python, C, and IDE ignores --- .gitignore | 77 +++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 73 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index a677a53..463faaf 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,74 @@ -build/ -dist/ -.venv/ -.coverage* .*_cache/ + +### PYTHON IGNORES ### +*.py[cod] + +# C extensions +*.so + +# Packages +*.egg +*.egg-info +dist +build +doc/build +eggs +*.eggs +parts +bin +var +sdist +develop-eggs +.installed.cfg +lib +lib64 +.venv + +# Installer logs +pip-log.txt + +# Unit test / coverage reports +.coverage* +.tox +nosetests.xml +htmlcov + +#Translations +*.mo + +#Sphinx +doc/source/_build/* + +#Mr Developer +.mr.developer.cfg + +### C IGNORES ### +# Object files +*.o + +# Libraries +*.lib +*.a + +# Shared objects (inc. Windows DLLs) +*.dll +*.so +*.so.* +*.dylib + +# Executables +*.exe +*.out +*.app + +# Others +*~ +# PyCharm Settings +.idea + +# VSCode Settings +.vscode + +# vi / vim swp files +*.swp +.DS_STORE -- GitLab