Stop Prettier from walking the runner's pnpm store
CI / test (push) Successful in 24s
CI / lint (push) Successful in 27s
CI / secrets-scan (push) Successful in 4s
CI / vuln-scan (push) Successful in 13s
CI / sast (push) Successful in 10s

The Gitea runner uses a workspace-local .pnpm-store/, so format:check
was scanning 1200+ dependency-cache JSON files. A .prettierignore
keeps Prettier off generated and vendored trees regardless of where
pnpm decides to drop its store.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-04 16:28:28 -07:00
parent a4ee21f8c2
commit 502ce99b87
+19
View File
@@ -0,0 +1,19 @@
# Dependency stores
node_modules/
.pnpm-store/
# Build output
dist/
build/
# Test coverage
coverage/
# Generated by Prisma
**/generated/
# Lockfiles (managed by their respective tools)
pnpm-lock.yaml
# Editor / OS
.DS_Store