From f111d1d2aa51fd0def776380bf4028ebd2164cca Mon Sep 17 00:00:00 2001 From: Lotus CI Date: Sat, 12 Sep 2026 14:18:26 -0400 Subject: [PATCH] ci(lotus): gitignore .pnpm-store so knip doesn't scan the runner's store MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Run #1858 got past install, tsc and oxlint; knip then failed with 1188 "unused files" — all under .pnpm-store/, because the Gitea runner keeps pnpm's content store inside the checkout, and it now contains the from-source matrix-js-sdk tree. knip honours .gitignore, so ignoring the store directory (verified locally with a synthetic .pnpm-store) is enough. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_01PPmy3tPq869XDW4njjVaKA --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index e9225072..5cbed94e 100644 --- a/.gitignore +++ b/.gitignore @@ -38,3 +38,4 @@ yarn-error.log *storybook.log storybook-static +.pnpm-store/