Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
lingcoder committed Aug 11, 2024
1 parent 14bf482 commit c783045
Show file tree
Hide file tree
Showing 5 changed files with 433 additions and 703 deletions.
10 changes: 3 additions & 7 deletions .solhint.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"extends": "solhint:all",
"extends": "solhint:recommended",
"plugins": [],
"rules": {
"compiler-version": ["error", ">=0.8.21"],
"func-visibility": ["warn", { "ignoreConstructors": true }],
Expand All @@ -12,15 +13,10 @@
"max-line-length": ["warn", 120],
"function-max-lines": "off",
"code-complexity": ["warn", 15],
"gas-named-return-values": "off",
"no-console": "off",
"gas-multitoken1155": "off",
"immutable-vars-naming": "off",
"gas-length-in-loops": "off",
"gas-increment-by-one": "off",
"comprehensive-interface": "off",
"named-return-values": "off",
"imports-order": "off",
"foundry-test-functions": "off"
"foundry-test-functions": "off"
}
}
2 changes: 1 addition & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default [{
"lib/openzeppelin-contracts",
"typechain-types/*",
],
}, ...compat.extends("standard"), {
}, {
plugins: {
mocha,
},
Expand Down
2 changes: 2 additions & 0 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"use strict";

import "./task/accounts";
import "@nomicfoundation/hardhat-toolbox";
import "@nomicfoundation/hardhat-verify";
Expand Down
6 changes: 1 addition & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
"contract",
"solidity"
],
"type": "module",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.5.0"
Expand Down Expand Up @@ -47,10 +46,7 @@
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.6.0",
"ethers": "^6.13.2",
Expand Down Expand Up @@ -84,7 +80,7 @@
"clean": "npx hardhat clean",
"deploy:polygon": "npx hardhat run --network polygon scripts/deploy.ts",
"deploy:mumbai": "npx hardhat run --network mumbai scripts/deploy.ts",
"deploy:goerli": "npx hardhat run --network goerli scripts/deploy.ts",
"deploy:sepolia": "npx hardhat run --network sepolia scripts/deploy.ts",
"deploy:": "npx hardhat run --network mainnet scripts/deploy.ts",
"test": "npx hardhat test",
"abi": "npx hardhat export-abi",
Expand Down
Loading

0 comments on commit c783045

Please sign in to comment.