-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathfoundry.toml
More file actions
40 lines (36 loc) · 862 Bytes
/
foundry.toml
File metadata and controls
40 lines (36 loc) · 862 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
32
33
34
35
36
37
38
39
40
[profile.default]
src = 'icm-contracts/avalanche/'
solc_version = '0.8.30'
evm_version = 'shanghai'
out = 'out'
libs = ['lib']
test = 'tests'
bytecode_hash = "none"
optimizer = true
optimizer_runs = 200
[profile.common]
src = 'icm-contracts/common/'
solc_version = '0.8.30'
evm_version = 'shanghai'
[profile.ethereum]
src = 'icm-contracts/ethereum/'
solc_version = '0.8.30'
evm_version = 'prague'
[fmt]
line_length = 100
tab_width = 4
bracket_spacing = false
int_types = 'preserve'
multiline_func_header = 'params_first'
quote_style = 'double'
number_underscores = 'thousands'
override_spacing = true
wrap_comments = false
# Add the following to your VSCode settings to enable automatic formatting.
# {
# "editor.formatOnSave": true,
# "[solidity]": {
# "editor.defaultFormatter": "JuanBlanco.solidity"
# },
# "solidity.formatter": "forge",
# }