-
Notifications
You must be signed in to change notification settings - Fork 2.7k
/
Copy pathfoundry.toml
29 lines (28 loc) · 931 Bytes
/
foundry.toml
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
[fmt]
bracket_spacing = false
contract_new_lines = false
hex_underscore = "remove"
ignore = []
int_types = "long"
line_length = 80
multiline_func_header = "params_first"
number_underscore = "preserve"
override_spacing = false
quote_style = "double"
single_line_statement_blocks = "preserve"
sort_imports = false
tab_width = 4
wrap_comments = false
[profile.default]
ast = true
bytecode_hash = "none"
cbor_metadata = false
fs_permissions = [{ access = "read", path = "./" }, { access = "write", path = "contracts.json" }]
gas_reports = ["*"]
optimizer = true
optimizer_runs = 10_000
solc_version = "0.8.27"
sparse_mode = false
src = "evm/scripts"
test = "evm/tests/src"
via_ir = true