Skip to content

Commit

Permalink
[#146] Fix failing workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
akshay-ap committed Jan 10, 2024
1 parent 15d38aa commit 07ceb2b
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 2 deletions.
26 changes: 26 additions & 0 deletions modules/4337-gas-metering/.eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
module.exports = {
env: {
browser: true,
es2021: true,
},
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'plugin:prettier/recommended'],
overrides: [
{
env: {
node: true,
},
files: ['.eslintrc.{js,cjs}'],
parserOptions: {
sourceType: 'script',
},
},
],
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
},
plugins: ['@typescript-eslint'],
rules: {
'@typescript-eslint/no-explicit-any': 'warn',
},
}
1 change: 1 addition & 0 deletions modules/4337-gas-metering/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@
"eslint-plugin-n": "^16.5.0",
"eslint-plugin-prettier": "^5.1.0",
"eslint-plugin-promise": "^6.1.1",
"prettier-plugin-solidity": "^1.2.0",
"prettier": "3.1.0",
"tsx": "3.13.0",
"typescript": "^5.3.3"
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.1.0",
"prettier-plugin-solidity": "^1.2.0"
"prettier": "^3.1.0"
},
"dependencies": {
"@safe-global/safe-contracts": "^1.4.1"
Expand Down

0 comments on commit 07ceb2b

Please sign in to comment.