Update .gitignore

Update the .gitignore file and organize it into sections, grouping together the files and folders that should be ignored in the project.
This commit is contained in:
keemsisi 2025-09-20 16:16:56 +01:00 committed by GitHub
parent a438acdbbd
commit fcc35ff277
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 32 additions and 3 deletions

35
.gitignore vendored
View File

@ -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