From 86a465705562278a113cfb62bbc713a1bd43e4f0 Mon Sep 17 00:00:00 2001 From: Iahn Cajigas Date: Wed, 4 Mar 2026 23:03:03 -0500 Subject: [PATCH] Chore: ignore generated artifacts and caches --- .gitignore | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/.gitignore b/.gitignore index 39716a19..af16591f 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,26 @@ __pycache__/ .pytest_cache/ docs/_build/ plots/ + +# Generated reports / validation outputs +output/ +tmp/ + +# Downloaded/cacheable datasets (not source) +data_cache/ +.cache/ +*.zip + +# Notebook execution artifacts +.ipynb_checkpoints/ + +# Python tooling caches +.mypy_cache/ +.ruff_cache/ +.coverage +htmlcov/ + +# Packaging artifacts +build/ +dist/ +*.egg-info/