fix: onchain/lib/uni-v3-lib always dirty in git (#58)
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>
This commit is contained in:
parent
de67b46753
commit
92843d61c0
1 changed files with 1 additions and 1 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -15,7 +15,7 @@ out/
|
||||||
.infura
|
.infura
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
||||||
/onchain/lib/**/node-modules/
|
/onchain/lib/**/node_modules/
|
||||||
onchain/node_modules/
|
onchain/node_modules/
|
||||||
|
|
||||||
# Ignore vim files:
|
# Ignore vim files:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue