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 da5f237 commit 3e1c050
Show file tree
Hide file tree
Showing 4 changed files with 157 additions and 157 deletions.
18 changes: 9 additions & 9 deletions foundry.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
## defaults for all profiles
[profile.default]
src = 'src' # the source directory
test = 'test' # the test directory
out = 'out' # the output directory (for artifacts)
libs = ['lib'] # a list of library directories
src = "src" # the source directory
test = "test" # the test directory
out = "out" # the output directory (for artifacts)
libs = ["lib"] # a list of library directories
cache = true # cache the builds
cache_path = 'cache' # where the cache is stored
solc_version = '0.8.23' # override for the solc version
evm_version = 'paris' # set the EVM target version (prevent using the `PUSH0` opcode)
cache_path = "cache" # where the cache is stored
solc_version = "0.8.23" # override for the solc version
evm_version = "paris" # set the EVM target version (prevent using the `PUSH0` opcode)
optimizer = true # enable the solc optimiser
optimizer_runs = 10_000_000 # the number of optimiser runs
via_ir = false # disable compilation pipeline to go through the Yul intermediate representation
verbosity = 3 # the verbosity of tests
fs_permissions = [{ access = "read-write", path = "./"}] # set read-write access to project root
bytecode_hash = 'none' # remove the metadata hash from the bytecode
fs_permissions = [{ access = "read-write", path = "./" }] # set read-write access to project root
bytecode_hash = "none" # remove the metadata hash from the bytecode

## default overrides for the CI runs
[profile.ci]
Expand Down
2 changes: 1 addition & 1 deletion interface/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,6 @@
"prettier-plugin-tailwindcss": "^0.5.14",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5",
"typescript-eslint": "^7.9.0"
"typescript-eslint": "^7.10.0"
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,6 @@
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.9.0"
"typescript-eslint": "^7.10.0"
}
}
Loading

0 comments on commit 3e1c050

Please sign in to comment.