diff --git a/.eslintrc.cjs b/.eslintrc.cjs index 64e2825..5755b5b 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -28,7 +28,6 @@ module.exports = { "never" ], - "no-duplicate-imports": "warn", "no-inline-comments": "warn", "no-magic-numbers": "warn", "no-mixed-operators": "warn", diff --git a/src/submitters/types/marionette.ts b/src/submitters/types/marionette.ts index f8429a0..4cf00d4 100644 --- a/src/submitters/types/marionette.ts +++ b/src/submitters/types/marionette.ts @@ -1,5 +1,5 @@ -import {BigNumberish, BytesLike} from "ethers"; -import {ethers as RawEthers} from "ethers"; +import {BigNumberish, BytesLike, ethers as RawEthers} from "ethers"; + export const MARIONETTE_ADDRESS = "0xD2c0DeFACe000000000000000000000000000000"; diff --git a/src/upgrader.ts b/src/upgrader.ts index 873c4a8..db9799c 100644 --- a/src/upgrader.ts +++ b/src/upgrader.ts @@ -1,7 +1,6 @@ -import hre from "hardhat"; +import hre, {network, upgrades} from "hardhat"; import chalk from "chalk"; import {ProxyAdmin} from "../typechain-types"; -import {network, upgrades} from "hardhat"; import {getManifestAdmin} from "@openzeppelin/hardhat-upgrades/dist/admin"; import {getVersion} from "./version"; import {promises as fs} from "fs";