Commit b0873d18 authored by Aniket-Engg's avatar Aniket-Engg Committed by Aniket

linting fix

parent 9aaa9135
...@@ -196,12 +196,12 @@ export const RemixUiStaticAnalyser = (props: RemixUiStaticAnalyserProps) => { ...@@ -196,12 +196,12 @@ export const RemixUiStaticAnalyser = (props: RemixUiStaticAnalyserProps) => {
props.analysisModule.call('terminal', 'log', { type: 'info', value: `[Slither Analysis]: Analysis Completed!! ${result.count} warnings found.` }) props.analysisModule.call('terminal', 'log', { type: 'info', value: `[Slither Analysis]: Analysis Completed!! ${result.count} warnings found.` })
const report = result.data const report = result.data
report.map((item) => { report.map((item) => {
let location: any = {} const location: any = {}
let locationString = 'not available' const locationString = 'not available'
let column = 0 const column = 0
let row = 0 const row = 0
let fileName = currentFile const fileName = currentFile
// There are issues with location for imported contract // There are issues with location for imported contract
// which stops complete analysis including remix analyzer's // which stops complete analysis including remix analyzer's
// if (item.sourceMap && item.sourceMap.length) { // if (item.sourceMap && item.sourceMap.length) {
// location = { // location = {
......
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