From fcc35ff277694ee504d031d558ea9f5126e74e0f Mon Sep 17 00:00:00 2001 From: keemsisi Date: Sat, 20 Sep 2025 16:16:56 +0100 Subject: [PATCH] Update .gitignore Update the .gitignore file and organize it into sections, grouping together the files and folders that should be ignored in the project. --- .gitignore | 35 ++++++++++++++++++++++++++++++++--- 1 file changed, 32 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 4ebf99e3..d938001d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,38 @@ -env/ +# Python __pycache__/ +**pycache**/ +*.py[cod] +*.so +*.egg-info/ +build/ +dist/ + +# Virtual environments +.env +env/ +.venv +venv/ + +# Testing +.pytest_cache/ +.coverage +htmlcov/ + +# IDE +.vscode/ +.idea/ + +# OS .DS_Store +Thumbs.db + +# Logs +*.log + +# Data files *.csv + +# Project specific src/ eval_results/ eval_data/ -*.egg-info/ -.env