Skip to content

Commit 98f49b9

Browse files
authored
Use relative paths in the recommended .gitignore
The reason I'm sending this PR is that ignition creates an `artifacts` folder that you may want to commit, and our `.gitignore` was making that tricky.
1 parent e6a8e2e commit 98f49b9

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
node_modules
22
.env
3-
coverage
4-
coverage.json
5-
typechain
6-
typechain-types
73

84
# Hardhat files
9-
cache
10-
artifacts
5+
/cache
6+
/artifacts
117

8+
# TypeChain files
9+
/typechain
10+
/typechain-types
11+
12+
# solidity-coverage files
13+
/coverage
14+
/coverage.json

0 commit comments

Comments
 (0)