From 322ea7900c3c80e0151ec17883296c3e9a7b591d Mon Sep 17 00:00:00 2001 From: Joseph Izang Date: Wed, 21 Jun 2023 16:13:25 +0100 Subject: [PATCH] make ssa aware of solhint results --- apps/solhint/src/app/SolhintPluginClient.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/solhint/src/app/SolhintPluginClient.ts b/apps/solhint/src/app/SolhintPluginClient.ts index 8cfef7fbe2..4bae9bf76b 100644 --- a/apps/solhint/src/app/SolhintPluginClient.ts +++ b/apps/solhint/src/app/SolhintPluginClient.ts @@ -93,6 +93,7 @@ export class SolHint extends PluginClient { }) this.emit('lintingFinished', hints) + this.call('solidityStaticAnalysis' as any, 'changedStatus', hints) return hints }