Skip to content

Commit

Permalink
ignore keystone in hh compile
Browse files Browse the repository at this point in the history
  • Loading branch information
RensR committed Nov 29, 2024
1 parent eb419a0 commit 90ebcd1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion contracts/hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ subtask(TASK_COMPILE_SOLIDITY_GET_SOURCE_PATHS).setAction(
const paths = await runSuper()
const noTests = paths.filter((p: string) => !p.endsWith('.t.sol'))
const noCCIP = noTests.filter((p: string) => !p.includes('/v0.8/ccip'))
return noCCIP.filter(
const noKeystone = noCCIP.filter((p: string) => !p.includes('/v0.8/keystone'))

Check failure on line 25 in contracts/hardhat.config.ts

View workflow job for this annotation

GitHub Actions / Solidity Lint

Replace `(p:·string)·=>·!p.includes('/v0.8/keystone')` with `⏎······(p:·string)·=>·!p.includes('/v0.8/keystone'),⏎····`

Check failure on line 25 in contracts/hardhat.config.ts

View workflow job for this annotation

GitHub Actions / Solidity Lint

Replace `(p:·string)·=>·!p.includes('/v0.8/keystone')` with `⏎······(p:·string)·=>·!p.includes('/v0.8/keystone'),⏎····`
return noKeystone.filter(
(p: string) => !p.includes('src/v0.8/vendor/forge-std'),
)
},
Expand Down

0 comments on commit 90ebcd1

Please sign in to comment.