@@ -62,10 +62,11 @@ export class SecurityAgent {
62
62
this . addFileToReport ( newName ) ;
63
63
} ) ;
64
64
65
- this . basePlugin . on ( 'solidity' , 'compilationFinished' , async ( fileName , source , languageVersion , data ) => { this . onCompilationFinished ( fileName ) } ) ;
66
- this . basePlugin . on ( 'vyper' , 'compilationFinished' , async ( fileName , source , languageVersion , data ) => { this . onCompilationFinished ( fileName ) } ) ;
67
- this . basePlugin . on ( 'hardhat' , 'compilationFinished' , async ( fileName , source , languageVersion , data ) => { this . onCompilationFinished ( fileName ) } ) ;
68
- this . basePlugin . on ( 'foundry' , 'compilationFinished' , async ( fileName , source , languageVersion , data ) => { this . onCompilationFinished ( fileName ) } ) ;
65
+ // disable for now the compilationFinished event
66
+ // this.basePlugin.on('solidity', 'compilationFinished', async (fileName, source, languageVersion, data) => { this.onCompilationFinished(fileName) });
67
+ // this.basePlugin.on('vyper', 'compilationFinished', async (fileName, source, languageVersion, data) => { this.onCompilationFinished(fileName) });
68
+ // this.basePlugin.on('hardhat', 'compilationFinished', async (fileName, source, languageVersion, data) => { this.onCompilationFinished(fileName) });
69
+ // this.basePlugin.on('foundry', 'compilationFinished', async (fileName, source, languageVersion, data) => { this.onCompilationFinished(fileName) });
69
70
70
71
this . watcher = new WorkspaceWatcher ( async ( ) => {
71
72
try {
0 commit comments