-
-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathfoundry.toml
More file actions
31 lines (27 loc) · 790 Bytes
/
Copy pathfoundry.toml
File metadata and controls
31 lines (27 loc) · 790 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Full reference: https://github.com/foundry-rs/foundry/tree/master/crates/config
[profile.default]
allow_internal_expect_revert = true
auto_detect_solc = false
bytecode_hash = "ipfs"
evm_version = "shanghai" # needed for greater coverage of EVM chains
fuzz = { runs = 256 }
optimizer = true
optimizer_runs = 10_000
out = "out"
solc = "0.8.30"
src = "src"
test = "test"
[profile.ci]
fuzz = { runs = 10_000, max_test_rejects = 100_000 }
verbosity = 3
[lint]
exclude_lints = ["mixed-case-function", "screaming-snake-case-const", "unsafe-typecast"]
[fmt]
bracket_spacing = true
int_types = "long"
line_length = 132
multiline_func_header = "all"
number_underscore = "preserve"
quote_style = "double"
tab_width = 4
wrap_comments = true