Skip to content

Commit 7240e79

Browse files
committed
fix(lint): eslint issue
1 parent 5c91f01 commit 7240e79

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/lint-check-internal-links.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Install dependencies
2222
run: npm ci
2323
- name: Run ESLint
24-
run: npm run lint
24+
run: npm run lint -- --max-warnings=0
2525

2626
typecheck:
2727
name: TypeScript Check

examples/developer-hub-javascript/autoRedeemHyperEVM.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
*/
1212

1313
import { ethers } from "hardhat";
14-
import { formatUnits, zeroPadValue, AbiCoder, Contract } from "ethers";
14+
import type { Contract } from "ethers";
15+
import { formatUnits, zeroPadValue, AbiCoder } from "ethers";
1516
import { Options } from "@layerzerolabs/lz-v2-utilities";
1617
import { EndpointId } from "@layerzerolabs/lz-definitions";
1718

examples/developer-hub-javascript/bridgeToHyperEVM.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import { web3 } from "hardhat";
1515
import { formatUnits } from "ethers";
1616
import { EndpointId } from "@layerzerolabs/lz-definitions";
1717
import { Options } from "@layerzerolabs/lz-v2-utilities";
18-
import {
18+
import type {
1919
IERC20Instance,
2020
FAssetOFTAdapterInstance,
2121
} from "../../typechain-types";

0 commit comments

Comments
 (0)