Pre-launch — Gluecron is in final validation. Public signups and git hosting for non-owner users open after launch review.
Commita18b6e2unknown_key

chore(gatetest): ignore .claude/worktrees/ in dead-code scans

chore(gatetest): ignore .claude/worktrees/ in dead-code scans

The parallel-agent Agent tool stages each agent's isolated copy of
the repo in .claude/worktrees/agent-<id>/. GateTest's dead-code
scanner was crawling those copies and blocking the pre-push hook
with "unused export" findings inside the worktree dirs.

Adding to ignore.paths so the pre-push hook (and any other GateTest
runs) skip the agent scratch directories.
Claude committed on May 17, 2026Parent: ecfe21b
1 file changed+21a18b6e227be247fd445f9aa125d23db26cc761ca
1 changed file+2−1
Modifiedgatetest.config.json+2−1View fileUnifiedSplit
9595 "src/__tests__/**",
9696 "scripts/**",
9797 "cli/**",
98 "vscode-extension/**"
98 "vscode-extension/**",
99 ".claude/worktrees/**"
99100 ]
100101 }
101102}
102103