From 1b7b767576976addbedcb5ead3fff4ed70132b23 Mon Sep 17 00:00:00 2001 From: Ilia Denisov Date: Wed, 3 Jun 2026 16:50:36 +0200 Subject: [PATCH] chore: gitignore Playwright MCP scratch output (.playwright-mcp/) The Playwright MCP writes page snapshots/screenshots into a .playwright-mcp/ directory while inspecting the UI; keep that scratch output out of the tree. --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 0578a85..259564b 100644 --- a/.gitignore +++ b/.gitignore @@ -10,6 +10,9 @@ .idea/ .DS_Store +# Playwright MCP scratch output (snapshots / screenshots written during inspection) +.playwright-mcp/ + # Local, unstaged env overrides **/.env.local **/.env.*.local