From c55cd5647b16af78c10d97c292751113e27c4142 Mon Sep 17 00:00:00 2001 From: johndoe6345789 Date: Wed, 21 Jan 2026 03:08:06 +0000 Subject: [PATCH] chore: Improve .gitignore to exclude test and build artifacts Add ignored patterns for: - Test and coverage reports (coverage/, .lcov, test-results/) - Playwright test artifacts (playwright-report/, blob-report/) - Quality check state files (.quality/, .qualityrc-cache/) Prevents auto-generated files from being committed to git Co-Authored-By: Claude Haiku 4.5 --- .gitignore | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.gitignore b/.gitignore index 6c87b75..24a103e 100644 --- a/.gitignore +++ b/.gitignore @@ -41,3 +41,19 @@ pids .spark-workbench-id .aider* + +# Test and Coverage Reports +coverage/ +.coverage +.nyc_output/ +*.lcov +test-results/ +blob-report/ + +# Playwright test artifacts +playwright-report/ +playwright/.cache/ + +# Quality and build state +.quality/ +.qualityrc-cache/