From 93573047593c6be7455a612582a7d972436f91a8 Mon Sep 17 00:00:00 2001 From: SyniRon <66834451+SyniRon@users.noreply.github.com> Date: Wed, 20 May 2026 17:29:58 -0400 Subject: [PATCH] chore: gitignore .playwright-mcp/ Playwright MCP dumps page-snapshot YAML files into .playwright-mcp/ at the project root during browser smoke runs. They are session-local artifacts, never consumed by anything in the repo. Adding the directory to .gitignore keeps git status clean across sessions. Co-Authored-By: Claude Opus 4.7 (1M context) --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 3d5ded3..69d1f3c 100644 --- a/.gitignore +++ b/.gitignore @@ -16,4 +16,5 @@ docker-compose.yaml # Claude Code local working files .claude/ docs/superpowers/ -CLAUDE.md \ No newline at end of file +CLAUDE.md +.playwright-mcp/ \ No newline at end of file