From 54c1d2762713ee888055942edaad38cb4398c610 Mon Sep 17 00:00:00 2001 From: Pieter Viljoen Date: Sun, 23 Aug 2026 20:48:41 -0700 Subject: [PATCH] Ignore mypy Cache Directory Every other Python tool cache (.pytest_cache, .ruff_cache, .pyright) was already ignored, but .mypy_cache was not, so a local mypy run left the checkout looking dirty. Verified: mypy creates it in the repo root by default, and it now shows as ignored rather than untracked. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 4c4ad48e..c74ed796 100644 --- a/.gitignore +++ b/.gitignore @@ -18,6 +18,7 @@ dist/ .pytest_cache/ .ruff_cache/ .pyright/ +.mypy_cache/ # Coverage output (dotnet XPlat/coverlet, Python coverage.py) coverage/