Skip to content

Commit 3dda259

Browse files
committed
chore: foundry config update
1 parent fccdb62 commit 3dda259

File tree

1 file changed

+23
-7
lines changed

1 file changed

+23
-7
lines changed

circom/foundry.toml

Lines changed: 23 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,25 @@
1+
# https://github.com/foundry-rs/foundry/blob/master/crates/config/README.md#all-options
2+
13
[profile.default]
2-
src = 'tmp'
3-
out = "artifacts"
4-
libs = ["./node_modules", "lib"]
4+
src = "src"
5+
test = "test"
6+
script = "script"
7+
out = "out"
8+
libs = ["node_modules"]
59
optimizer = true
6-
optimizer_runs = 200
7-
evm_version = 'shanghai'
8-
via-ir = true
9-
solc = "0.8.26"
10+
optimizer_runs = 10_000
11+
solc = "0.8.30"
12+
evm_version = "prague"
13+
14+
[profile.ci]
15+
verbosity = 4
16+
17+
[fmt]
18+
bracket_spacing = true
19+
int_types = "long"
20+
line_length = 120
21+
multiline_func_header = "all"
22+
number_underscore = "thousands"
23+
quote_style = "double"
24+
tab_width = 4
25+
wrap_comments = true

0 commit comments

Comments
 (0)