From 180c655d2210364cacba1ffc31a8e5c8d5fce5bb Mon Sep 17 00:00:00 2001 From: Scott Sorell Date: Thu, 23 Jul 2026 18:32:42 -0600 Subject: [PATCH] stop tracking python exclusions --- .gitignore | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8f51151 --- /dev/null +++ b/.gitignore @@ -0,0 +1,24 @@ +# Python cache and local artifacts +__pycache__/ +*.py[cod] +.pytest_cache/ +.mypy_cache/ +.ruff_cache/ + +# Environment and local tooling metadata +.venv/ +venv/ +env/ +.env +.env.* + +# Test and coverage output +.coverage +.coverage.* +htmlcov/ +.pytype/ + +# Editor and OS noise +.DS_Store +.idea/ +.vscode/