-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfoundry.toml
30 lines (28 loc) · 877 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
30
[profile.default]
src = "src"
out = "out"
script = 'script'
test = 'test'
libs = ["node_modules", "lib"]
solc_version = '0.8.25'
auto_detect_solc = true
fs_permissions = [
{ access = 'read-write', path = './deployments/' },
{ access = 'write', path = './deployments/31337/' },
{ access = 'read', path = './deploy-config/' },
{ access = 'read', path = './broadcast/' },
{ access = 'read', path = './forge-artifacts/' },
{ access = 'read', path = './out' },
{ access = 'read', path = './script/deploy/' },
{ access = 'read-write', path = './' },
]
[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
# See more config options https://github.com/foundry-rs/foundry/blob/master/crates/config/README.md#all-options