slither handle in ide

pull/5370/head
aniket-engg 4 years ago committed by Aniket
parent de2894d9a2
commit 88a34b4a4a
  1. 18
      apps/remix-ide/src/app/files/slither-handle.js

@ -0,0 +1,18 @@
import { WebsocketPlugin } from '@remixproject/engine-web'
import * as packageJson from '../../../../../package.json'
const profile = {
name: 'slither',
displayName: 'Slither',
url: 'ws://127.0.0.1:65523',
methods: [],
description: 'Using Remixd daemon, run slither static analysis',
kind: 'other',
version: packageJson.version
}
export class SlitherHandle extends WebsocketPlugin {
constructor () {
super(profile)
}
}
Loading…
Cancel
Save