From a460b750a8f92e7aa92ada9f778666e9dfe348ff Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 9 Jul 2026 18:10:06 +0800 Subject: [PATCH] chore: ignore macOS .DS_Store files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We've had a stray tests/.DS_Store showing up as untracked in `git status` for several commits. The repo already has .gitignore sections for Python / venv / IDEs / data / test artifacts but nothing for the macOS file Finder drops into every directory it touches. Add a minimal macOS section with just .DS_Store (skip the broader `._*` resource-fork glob since the user asked for the specific file). No code or test changes — pure ignore-list update. The stray .DS_Store on this machine has already been removed from disk, so this commit touches only .gitignore. Tests: 405 passed, no test changes (ignore list isn't covered by tests). Co-Authored-By: Claude Fable 5 --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index d473b71..b558aa7 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,6 @@ data/ .pytest_cache/ .coverage htmlcov/ + +# macOS +.DS_Store