From 48881eb53bb5c9d182736fe67d2f44c9b60b5780 Mon Sep 17 00:00:00 2001 From: Jonathan Miller Date: Sun, 12 Jul 2026 17:58:54 -0500 Subject: [PATCH] gitignore: anchor reports/ to root so component source dirs aren't ignored Mirrors the Template-Generic fix. The bare `reports/` rule ignored any dir named "reports" at any depth, silently excluding legitimate Joomla component source (src/View/Reports, tmpl/reports). Anchor to `/reports/` (root build output only). Claude-Session: https://claude.ai/code/session_01VXrBk7psPzJPHVuBDJwt2x --- .gitignore | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 9322540..6c6270e 100644 --- a/.gitignore +++ b/.gitignore @@ -131,7 +131,9 @@ coverage/ coverage.xml htmlcov/ junit.xml -reports/ +# Root build/coverage output only — anchored so it does not swallow component +# source dirs named "reports" (e.g. a Joomla admin view src/View/Reports, tmpl/reports). +/reports/ test-results/ tests/_output/ .github/local/