From fcc35ff277694ee504d031d558ea9f5126e74e0f Mon Sep 17 00:00:00 2001 From: keemsisi Date: Sat, 20 Sep 2025 16:16:56 +0100 Subject: [PATCH 1/2] 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 From 54bec4026c098b3e93d6482f645cc19b033816ae Mon Sep 17 00:00:00 2001 From: keemsisi Date: Sat, 20 Sep 2025 16:27:58 +0100 Subject: [PATCH 2/2] Update .gitignore --- .gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitignore b/.gitignore index d938001d..b6fdf33d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,5 @@ # Python __pycache__/ -**pycache**/ *.py[cod] *.so *.egg-info/