thunderbird-patch-review

Simple email patch review tool for Thunderbird

git clone git://mccd.space/thunderbird-patch-review
commit a90a0d90dcc5dd872db92b6256a07ddf286f456b
parent ae8dee09f32b3abbc90744c66e088fe6686c7239
Author: Pi Agent <agent@pi.local>
Date:   Wed, 22 Jul 2026 15:35:41 +0200

gitignore webext-linter caches

Running the webext-linter from the repo root (its default cache cwd)
writes .schema-cache/, .lib-mozilla-hash-db-cache/,
.lib-cdn-lookup-cache/, .experiments-cache/ and .llm-model-cache/ into
the repo. Ignore them so a lint run doesn't dirty the tree.

Diffstat:
M.gitignore | 7+++++++
1 file changed, 7 insertions(+), 0 deletions(-)
diff --git a/.gitignore b/.gitignore
@@ -1,3 +1,10 @@
 
 patch-review.xpi
 *.xpi
+
+# webext-linter caches (run from repo root by default)
+.schema-cache/
+.lib-mozilla-hash-db-cache/
+.lib-cdn-lookup-cache/
+.experiments-cache/
+.llm-model-cache/