onchain/ uses Foundry for dependency management, not yarn/npm. Adding yarn.lock, package-lock.json, and node_modules/ to .gitignore prevents accidental commits of JS toolchain artifacts in future. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
29 lines
386 B
Text
29 lines
386 B
Text
# Compiler files
|
|
cache/
|
|
out/
|
|
|
|
# Ignores development broadcast logs
|
|
!/broadcast
|
|
/broadcast/*/31337/
|
|
/broadcast/**/dry-run/
|
|
|
|
# Docs
|
|
docs/
|
|
|
|
# Dotenv file
|
|
.env
|
|
.secret
|
|
.swp
|
|
|
|
/broadcast/
|
|
|
|
tags
|
|
analysis/profitable_scenario.csv
|
|
fuzzing_results_*
|
|
analysis/fuzz-*.csv
|
|
*.log
|
|
|
|
# JS package manager lock files (deps managed by forge/foundry, not yarn/npm)
|
|
yarn.lock
|
|
package-lock.json
|
|
node_modules/
|