The root .gitignore had a typo: `node-modules` (hyphen) instead of `node_modules` (underscore), so the glob pattern never matched the directory that npm creates. The `ignore = dirty` setting in .gitmodules (added in #147) already suppresses the dirty-submodule report; this commit corrects the broken pattern so it also provides defence-in-depth at the parent-repo level. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
40 lines
498 B
Text
40 lines
498 B
Text
# Compiler files
|
|
cache/
|
|
out/
|
|
|
|
# Ignores development broadcast logs
|
|
/broadcast
|
|
/broadcast/*/31337/
|
|
/broadcast/**/dry-run/
|
|
|
|
# Dotenv file
|
|
.env
|
|
.secret
|
|
.secret*
|
|
!onchain/.secret.local
|
|
.infura
|
|
.DS_Store
|
|
|
|
/onchain/lib/**/node_modules/
|
|
onchain/node_modules/
|
|
|
|
# Ignore vim files:
|
|
*~
|
|
*.swp
|
|
*.swo
|
|
.playwright-mcp/
|
|
ponder-repo
|
|
tmp
|
|
foundry.lock
|
|
services/ponder/.env.local
|
|
node_modules
|
|
|
|
# Test artifacts
|
|
test-results/
|
|
tests/.stack.log
|
|
playwright-report/
|
|
services/ponder/.ponder/
|
|
|
|
# Temporary files
|
|
/tmp/
|
|
logs/
|