From 508eb60294af4dac2c6b7362af1fdce32638afef Mon Sep 17 00:00:00 2001 From: Felix Delattre Date: Thu, 11 Jun 2026 16:24:50 +0200 Subject: [PATCH] Improved .gitignore. --- .gitignore | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/.gitignore b/.gitignore index 1d40b6d..369ceb2 100644 --- a/.gitignore +++ b/.gitignore @@ -3,20 +3,30 @@ data/ # Environment and secrets .env +.env.* +!.env.example .venv/ venv/ env/ +ENV/ # Python __pycache__/ *.py[cod] *$py.class *.so +*.pyd .Python +# uv +.uv/ + # Testing & coverage .pytest_cache/ .coverage +.coverage.* +coverage.xml +nosetests.xml htmlcov/ .tox/ @@ -25,11 +35,25 @@ htmlcov/ .mypy_cache/ .dmypy.json dmypy.json +.pytype/ # Distribution / packaging build/ dist/ *.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 .vscode/ @@ -41,6 +65,11 @@ dist/ # OS .DS_Store Thumbs.db +desktop.ini + +# Merge artifacts +*.orig +*.rej # Agents AGENTS.md