From 064f844be841b8d56a10140cb3b09efead5b98ff Mon Sep 17 00:00:00 2001 From: David Anthony Date: Fri, 8 May 2026 07:29:11 -0700 Subject: [PATCH] chore(repo): ignore generated artefacts and tool directories - Ignore .codeviz/ (code visualisation tool output) - Ignore apps/apollo-chat/ (uninitialised scaffold with no source) - Ignore **/locales/*.js (compiled lingui output; *.ts was already ignored) Co-Authored-By: Claude Sonnet 4.6 --- .gitignore | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.gitignore b/.gitignore index 1f443e8e5..9592cfd2a 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,12 @@ !.claude/skills/ !.claude/settings.json +# Code visualization tools +.codeviz/ + +# Uninitialized app scaffolds (no source code yet) +apps/apollo-chat/ + # Planning (short-term, task-related documents) plan/* !plan/README.md @@ -24,6 +30,7 @@ storybook-static/ # Compiled locale files (generated by lingui compile) **/locales/*.ts +**/locales/*.js # Playwright MCP .playwright-mcp