We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 344c72b commit 3cb2ee9Copy full SHA for 3cb2ee9
3 files changed
.gitignore
@@ -6,7 +6,6 @@ out/
6
!/broadcast
7
/broadcast/*/31337/
8
/broadcast/**/dry-run/
9
-
10
# Docs
11
docs/
12
.gitmodules
@@ -0,0 +1,6 @@
1
+[submodule "lib/forge-std"]
2
+ path = lib/forge-std
3
+ url = https://github.com/foundry-rs/forge-std
4
+[submodule "lib/openzeppelin-contracts-upgradeable"]
5
+ path = lib/openzeppelin-contracts-upgradeable
+ url = https://github.com/OpenZeppelin/openzeppelin-contracts-upgradeable
foundry.toml
@@ -1,6 +1,11 @@
[profile.default]
src = "src"
out = "out"
+coverage = true
libs = ["lib"]
+exclude_paths = ["lib/*", "test/mocks/*"]
+
+[linter]
+disable = ["mixed-case-function"]
-# See more config options https://github.com/foundry-rs/foundry/blob/master/crates/config/README.md#all-options
0 commit comments