From e56690a8b49b2e91aa9db16c33029cfb1a5a21ce Mon Sep 17 00:00:00 2001 From: AnieeG Date: Wed, 28 Aug 2024 16:42:18 -0700 Subject: [PATCH] fix lint --- contracts/hardhat.ccip.zksync.config.ts | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/contracts/hardhat.ccip.zksync.config.ts b/contracts/hardhat.ccip.zksync.config.ts index 51650785d5..558a52b030 100644 --- a/contracts/hardhat.ccip.zksync.config.ts +++ b/contracts/hardhat.ccip.zksync.config.ts @@ -19,16 +19,16 @@ const COMPILER_SETTINGS = { // prune forge style tests from hardhat paths subtask(TASK_COMPILE_SOLIDITY_GET_SOURCE_PATHS).setAction( - async (_, __, runSuper) => { - const paths = await runSuper() - const noTests = paths.filter((p: string) => !p.endsWith('.t.sol')) - const noCCIPTests = noTests.filter( - (p: string) => !p.includes('/v0.8/ccip/test'), - ) - return noCCIPTests.filter( - (p: string) => !p.includes('src/v0.8/vendor/forge-std'), - ) - }, + async (_, __, runSuper) => { + const paths = await runSuper() + const noTests = paths.filter((p: string) => !p.endsWith('.t.sol')) + const noCCIPTests = noTests.filter( + (p: string) => !p.includes('/v0.8/ccip/test'), + ) + return noCCIPTests.filter( + (p: string) => !p.includes('src/v0.8/vendor/forge-std'), + ) + }, ) /** @@ -90,7 +90,7 @@ let config = { dockerImage: '', tag: '', }, - // contractsToCompile: ['RMN', 'ARMProxy'], // uncomment this to compile only specific contracts + // contractsToCompile: ['RMN', 'ARMProxy'], // uncomment this to compile only specific contracts }, }, warnings: !process.env.HIDE_WARNINGS,