From 30c4794520823673bc91f1542fa3ffb83a4a53cf Mon Sep 17 00:00:00 2001 From: Padreug Date: Tue, 9 Jun 2026 12:44:37 +0200 Subject: [PATCH] chore(gitignore): ignore .playwright-mcp/ and inspect/ scratch dirs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Both directories are generated by tooling that any aiolabs site forked off the boilerplate is likely to run: - .playwright-mcp/ — written by the Playwright MCP server (snapshots, console logs) every time it drives a browser. Lives in main now via .mcp.json so this gitignore entry belongs here too. - inspect/ — convention for a scratch folder holding screenshots, style dumps and other visual-QA artifacts produced during dev. Not source of truth for anything. Co-Authored-By: Claude Opus 4.7 (1M context) --- .gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitignore b/.gitignore index ad5f2f7..73571b4 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,9 @@ dist-ssr pnpm-debug.log* .claude/ + +# Tooling scratch dirs (Playwright MCP snapshots/console output; +# inspect/ is a working folder for screenshots and style dumps during +# visual QA). +.playwright-mcp/ +inspect/