From b529edecc337bbe477d3de7ee57440a7ddb75e03 Mon Sep 17 00:00:00 2001 From: cottongin Date: Thu, 12 Mar 2026 02:10:55 -0400 Subject: [PATCH] chore: update .gitignore for SQLite WAL, venv, and tool caches Made-with: Cursor --- .gitignore | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index c651e27..0ec2acd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,25 @@ +# macOS .DS_Store -*.db -.env + +# Python __pycache__/ *.pyc +*.pyo +*.egg-info/ +dist/ +build/ +.venv/ + +# Tools +.ruff_cache/ +.pytest_cache/ +.mypy_cache/ + +# SQLite runtime +*.db +*.db-shm +*.db-wal + +# Environment / secrets +.env +.env.*