Commit 74320821 authored by aniket-engg's avatar aniket-engg Committed by Aniket

linting fix

parent ea8e6e80
...@@ -26,7 +26,7 @@ export class SlitherClient extends PluginClient { ...@@ -26,7 +26,7 @@ export class SlitherClient extends PluginClient {
const errMsg = '[Slither Analysis]: Cannot analyse in read-only mode' const errMsg = '[Slither Analysis]: Cannot analyse in read-only mode'
return reject(new Error(errMsg)) return reject(new Error(errMsg))
} }
const outputFile = 'remix-slitherReport_' + Date.now() + '.json' const outputFile = 'remix-slitherReport_' + Date.now() + '.json'
const cmd = `slither ${filePath} --json ${outputFile}` const cmd = `slither ${filePath} --json ${outputFile}`
const options = { cwd: this.currentSharedFolder, shell: true } const options = { cwd: this.currentSharedFolder, shell: true }
const child = spawn(cmd, options) const child = spawn(cmd, options)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment