chore: ignore Playwright MCP artifacts at repo root#277
Merged
Conversation
Loose .png screenshots from Playwright MCP sessions and the `.playwright-mcp/` output directory keep showing up as untracked at the repo root. None of them belong in the tree (tracked PNGs all live under `Applications/Pgan.PoracleWebNet.App/ClientApp/public/assets/`). Add a root-only `/*.png` rule plus `.playwright-mcp/` so `git status` stays clean.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Loose
.pngscreenshots from Playwright MCP runs (login.png,raid-add-dialog-420.png,rsvp-desktop*.png,rsvp-zoom.png) and the.playwright-mcp/output directory kept showing up as untracked at the repo root, pollutinggit statusbetween sessions.Fix
Add two patterns to
.gitignore:.playwright-mcp/— Playwright MCP's persistent output directory/*.png— root-only, so it catches scattered screenshots without touching the tracked PNGs underApplications/Pgan.PoracleWebNet.App/ClientApp/public/assets/help/and elsewhereVerified no tracked PNGs exist at the repo root (
git ls-files "*.png" | awk -F/ 'NF==1'is empty), so the/*.pngrule is safe.Test plan
git statusfrom a fresh checkout stays clean even with Playwright artifacts presentClientApp/public/assets/are unaffected (they're not at the repo root)