Skip to content

Commit

Permalink
🔁 Bump typescript-eslint From 7.9.0 to 7.10.0
Browse files Browse the repository at this point in the history
Signed-off-by: Pascal Marco Caversaccio <pascal.caversaccio@hotmail.ch>
  • Loading branch information
pcaversaccio committed May 21, 2024
1 parent 0aa64e2 commit 7c287d4
Show file tree
Hide file tree
Showing 3 changed files with 126 additions and 109 deletions.
28 changes: 14 additions & 14 deletions foundry.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
## defaults for all profiles
[profile.default]
src = 'contracts/src' # the source directory
test = 'contracts/test' # the test directory
out = 'forge-artifacts' # the output directory (for artifacts)
libs = ['contracts/lib'] # a list of library directories
src = "contracts/src" # the source directory
test = "contracts/test" # the test directory
out = "forge-artifacts" # the output directory (for artifacts)
libs = ["contracts/lib"] # a list of library directories
remappings = [] # a list of remappings
libraries = [] # a list of deployed libraries to link against
cache = true # whether to cache builds or not
cache_path = 'cache' # where the cache is stored if enabled
cache_path = "cache" # where the cache is stored if enabled
force = false # whether to ignore the cache (clean build)
evm_version = 'paris' # the evm version (by hardfork name)
gas_reports = ['*'] # list of contracts to report gas of
solc_version = '0.8.25' # override for the solc version (setting this ignores `auto_detect_solc`)
evm_version = "paris" # the evm version (by hardfork name)
gas_reports = ["*"] # list of contracts to report gas of
solc_version = "0.8.25" # override for the solc version (setting this ignores `auto_detect_solc`)
auto_detect_solc = true # enable auto-detection of the appropriate solc version to use
offline = false # offline mode, if enabled, network access (downloading solc) is disallowed
optimizer = true # enable or disable the solc optimizer
Expand All @@ -22,18 +22,18 @@ ignored_error_codes = [] # a list of ignore
fuzz = { runs = 256 } # the number of fuzz runs for tests
invariant = { runs = 256 } # the number of runs that must execute for each invariant test group
ffi = false # whether to enable foreign function interface (ffi) cheatcodes or not
sender = '0x00a329c0648769a73afac7f9381e08fb43dbea72' # the address of `msg.sender` in tests
tx_origin = '0x00a329c0648769a73afac7f9381e08fb43dbea72' # the address of `tx.origin` in tests
initial_balance = '0xffffffffffffffffffffffff' # the initial balance of the test contract
sender = "0x00a329c0648769a73afac7f9381e08fb43dbea72" # the address of `msg.sender` in tests
tx_origin = "0x00a329c0648769a73afac7f9381e08fb43dbea72" # the address of `tx.origin` in tests
initial_balance = "0xffffffffffffffffffffffff" # the initial balance of the test contract
block_number = 0 # the block number we are at in tests
chain_id = 31337 # the chain id we are on in tests
gas_limit = 9223372036854775807 # the gas limit in tests
gas_price = 0 # the gas price (in wei) in tests
block_base_fee_per_gas = 0 # the base fee (in wei) in tests
block_coinbase = '0x0000000000000000000000000000000000000000' # the address of `block.coinbase` in tests
block_coinbase = "0x0000000000000000000000000000000000000000" # the address of `block.coinbase` in tests
block_timestamp = 0 # the value of `block.timestamp` in tests
block_difficulty = 0 # the value of `block.difficulty` in tests
fs_permissions = [{ access = "read-write", path = "./"}] # set read-write access to project root
fs_permissions = [{ access = "read-write", path = "./" }] # set read-write access to project root

## optimizer details for the default profile
[profile.default.optimizer_details]
Expand All @@ -43,4 +43,4 @@ yul = true # whether to enabl
# sets the `yulDetails` of the `optimizer_details` for the `default` profile
[profile.default.optimizer_details.yulDetails]
stackAllocation = true # whether to enable the improvement of allocation of stack slots for variables or not
optimizerSteps = 'dhfoDgvulfnTUtnIf' # the optimization steps to be applied
optimizerSteps = "dhfoDgvulfnTUtnIf" # the optimization steps to be applied
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.9.0",
"typescript-eslint": "^7.10.0",
"xdeployer": "^3.0.10",
"zksync-ethers": "^6.7.1"
}
Expand Down
Loading

0 comments on commit 7c287d4

Please sign in to comment.