2022-07-16 14:36:29 +03:00
|
|
|
# Full reference https://github.com/foundry-rs/foundry/tree/master/config
|
|
|
|
|
2023-01-03 21:18:14 +02:00
|
|
|
[fmt]
|
|
|
|
bracket_spacing = true
|
|
|
|
int_types = "long"
|
|
|
|
line_length = 120
|
2023-01-03 22:49:02 +02:00
|
|
|
multiline_func_header = "all"
|
2023-01-03 21:18:14 +02:00
|
|
|
number_underscore = "thousands"
|
2023-01-04 14:14:35 +02:00
|
|
|
override_spacing = false
|
2023-01-03 21:18:14 +02:00
|
|
|
quote_style = "double"
|
|
|
|
tab_width = 4
|
2023-01-03 22:49:02 +02:00
|
|
|
wrap_comments = true
|
2023-01-03 21:18:14 +02:00
|
|
|
|
2022-07-16 14:36:29 +03:00
|
|
|
[profile.default]
|
|
|
|
auto_detect_solc = false
|
2022-08-15 15:50:16 +03:00
|
|
|
bytecode_hash = "none"
|
2023-01-03 16:30:03 +02:00
|
|
|
fuzz = { runs = 1_000 }
|
2022-07-16 14:36:29 +03:00
|
|
|
gas_reports = ["*"]
|
2022-08-15 15:50:16 +03:00
|
|
|
libs = ["lib"]
|
2022-07-16 14:36:29 +03:00
|
|
|
optimizer = true
|
|
|
|
optimizer_runs = 10_000
|
|
|
|
out = "out"
|
2022-09-25 19:02:36 +03:00
|
|
|
solc = "0.8.17"
|
2022-07-16 14:36:29 +03:00
|
|
|
src = "src"
|
|
|
|
test = "test"
|
|
|
|
|
|
|
|
[profile.ci]
|
2022-12-24 16:10:31 +02:00
|
|
|
fuzz = { runs = 10_000 }
|
2022-07-16 14:36:29 +03:00
|
|
|
verbosity = 4
|
2023-01-03 21:18:14 +02:00
|
|
|
|