Skip to content

Commit

Permalink
Update foundry.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
0xfuturistic committed Apr 1, 2024
1 parent ae9fdee commit f753417
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions packages/contracts-bedrock/foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,32 +26,32 @@ extra_output = ['devdoc', 'userdoc', 'metadata', 'storageLayout']
bytecode_hash = 'none'
build_info_path = 'artifacts/build-info'
evm_version = "cancun"
ignored_error_codes = [2394]
ignored_error_codes = [2394, 5574, 3860]

# Test / Script Runner Settings
ffi = true
fs_permissions = [
{ access='read-write', path='./.resource-metering.csv' },
{ access='read-write', path='./snapshots/' },
{ access='read-write', path='./deployments/' },
{ access='read', path='./deploy-config/' },
{ access='read', path='./periphery-deploy-config/' },
{ access='read', path='./broadcast/' },
{ access='read', path = './forge-artifacts/' },
{ access='write', path='./semver-lock.json' },
{ access='read-write', path='./.testdata/' },
{ access='read', path='./kout-deployment' }
{ access = 'read-write', path = './.resource-metering.csv' },
{ access = 'read-write', path = './snapshots/' },
{ access = 'read-write', path = './deployments/' },
{ access = 'read', path = './deploy-config/' },
{ access = 'read', path = './periphery-deploy-config/' },
{ access = 'read', path = './broadcast/' },
{ access = 'read', path = './forge-artifacts/' },
{ access = 'write', path = './semver-lock.json' },
{ access = 'read-write', path = './.testdata/' },
{ access = 'read', path = './kout-deployment' },
]
libs = ["node_modules", "lib"]

[fuzz]
runs = 64

[fmt]
line_length=120
multiline_func_header='all'
bracket_spacing=true
wrap_comments=true
line_length = 120
multiline_func_header = 'all'
bracket_spacing = true
wrap_comments = true
ignore = ['src/vendor/WETH9.sol']

################################################################
Expand Down

0 comments on commit f753417

Please sign in to comment.