From 0842c574d6b6515a10ec4f5218da48ff991e5974 Mon Sep 17 00:00:00 2001 From: Ethanfel Date: Sun, 21 Jun 2026 10:37:41 +0200 Subject: [PATCH] chore: add .gitignore for caches and local data Ignore __pycache__, *.pyc, .pytest_cache, .benchmarks, and *.db files. Co-Authored-By: Claude Opus 4.8 --- .gitignore | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7132986 --- /dev/null +++ b/.gitignore @@ -0,0 +1,11 @@ +# Python +__pycache__/ +*.py[cod] +*.egg-info/ + +# Test / tooling caches +.pytest_cache/ +.benchmarks/ + +# Local data +*.db