From 4ecd7137daec6cbb22307610b861fc47576e3ccc Mon Sep 17 00:00:00 2001 From: ANIRUDDHA ADAK Date: Tue, 29 Oct 2024 16:36:19 +0530 Subject: [PATCH] Update .gitignore (#70) Update .gitignore to exclude common items for issue #69 Co-authored-by: John Bampton --- .gitignore | 66 ++++++++++++++++++++++++++++++++++++++++++------------ 1 file changed, 52 insertions(+), 14 deletions(-) diff --git a/.gitignore b/.gitignore index 8427a5c..8a911c8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,23 +1,61 @@ -# Node.js +# Dependency directories node_modules/ -npm-debug.log -yarn-error.log +bower_components/ + +# Build directories +dist/ +build/ # Logs logs/ *.log -yarn-debug.log* -yarn-error.log* -# Build output -dist/ -build/ +# Operating System files +.DS_Store # macOS +Thumbs.db # Windows + +# IDE/Editor settings +.vscode/ +.idea/ +*.iml -# Environment variables +# Python specific +__pycache__/ +*.py[cod] +*.pyo +*.pyd +env/ +venv/ +*.egg-info/ + +# Java specific +*.class +*.jar +*.war +*.ear + +# C/C++ specific +*.o +*.exe +*.out +*.a + +# Temporary files +tmp/ +temp/ +*.tmp + +# Environment variable files .env -.env.local -# IDE files -.idea/ -.vscode/ -.DS_Store +# Coverage reports +coverage/ +*.cover + +# Jupyter Notebook checkpoints +.ipynb_checkpoints/ + +# Other common exclusions +*.bak +*.swp +*~