forked from unionlabs/union
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfoundry.toml
More file actions
31 lines (29 loc) · 972 Bytes
/
foundry.toml
File metadata and controls
31 lines (29 loc) · 972 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
[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.optimizer_details]
constantOptimizer = true
cse = true
yul = true
[profile.default]
ast = true
fs_permissions = [{ access = "read", path = "./" }, { access = "write", path = "contracts.json" }]
gas_reports = ["*"]
optimizer = true
optimizer_runs = 1_000
solc_version = "0.8.27"
src = "evm/scripts"
test = "evm/tests/src"
via_ir = true