From 931096cc172f9954e6890441ef3ba7b6f9407798 Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Wed, 3 Jun 2026 09:31:54 +0200 Subject: [PATCH] ignore local build, venv, log, and scratch artefacts Root-anchored ignores for Flutter build output (dist/), the Python venv (.venv/), coverage and logs, the firebase debug log, and two stray root-level Python trees (clide/, tests/) that aren't the Dart test/ dir. Keeps git status clean without committing machine-local artefacts. Co-Authored-By: Claude Opus 4.8 (1M context) --- .gitignore | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.gitignore b/.gitignore index 463fb8bf..3ff7d5cb 100644 --- a/.gitignore +++ b/.gitignore @@ -121,3 +121,13 @@ legacy/**/.coverage.* .pql/* !.pql/changelog/ !.pql/pql-plan.json + +# -- Local build / env artefacts (root-anchored; never tracked) --------- +/.coverage +/.venv/ +/dist/ +/logs/ +/firebase-debug.log +# stray Python trees at the root (the real Dart suite is test/, singular) +/clide/ +/tests/