Improved .gitignore.

This commit is contained in:
Felix Delattre 2026-06-11 16:24:50 +02:00
parent 2c08132855
commit 508eb60294

29
.gitignore vendored
View file

@ -3,20 +3,30 @@ data/
# Environment and secrets # Environment and secrets
.env .env
.env.*
!.env.example
.venv/ .venv/
venv/ venv/
env/ env/
ENV/
# Python # Python
__pycache__/ __pycache__/
*.py[cod] *.py[cod]
*$py.class *$py.class
*.so *.so
*.pyd
.Python .Python
# uv
.uv/
# Testing & coverage # Testing & coverage
.pytest_cache/ .pytest_cache/
.coverage .coverage
.coverage.*
coverage.xml
nosetests.xml
htmlcov/ htmlcov/
.tox/ .tox/
@ -25,11 +35,25 @@ htmlcov/
.mypy_cache/ .mypy_cache/
.dmypy.json .dmypy.json
dmypy.json dmypy.json
.pytype/
# Distribution / packaging # Distribution / packaging
build/ build/
dist/ dist/
*.egg-info/ *.egg-info/
*.egg
MANIFEST
pip-log.txt
pip-delete-this-directory.txt
# Logs
*.log
nohup.out
# Jupyter
.ipynb_checkpoints/
profile_default/
ipython_config.py
# IDE # IDE
.vscode/ .vscode/
@ -41,6 +65,11 @@ dist/
# OS # OS
.DS_Store .DS_Store
Thumbs.db Thumbs.db
desktop.ini
# Merge artifacts
*.orig
*.rej
# Agents # Agents
AGENTS.md AGENTS.md