https://github.com/samparsky/slither-vscode
VSCode extension for slither plugin
https://github.com/samparsky/slither-vscode
Last synced: 2 months ago
JSON representation
VSCode extension for slither plugin
- Host: GitHub
- URL: https://github.com/samparsky/slither-vscode
- Owner: samparsky
- Created: 2018-12-28T09:19:22.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-02-18T02:15:42.000Z (over 6 years ago)
- Last Synced: 2023-10-26T11:51:41.761Z (over 1 year ago)
- Language: TypeScript
- Size: 77.1 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# VScode Slither Extension
Vscode extension for Slither smart contract audit tool
## Features
* Enables you to configure the list of detectors to run against your project## Requirements
* Slither ( > 0.4.0 )
You can install slither via `pip install slither-analyzer`
or install from source using the respository https://github.com/trailofbits/slither## Configure Extension
You can configure the list of detectors to run against your project by providing the list
of detectors in your `.vscode/settings.json` as specified below```js
{
"slither.exclude": ["unused-state"],
"slither.include": ["external-function"]
}
```An example configuration can be found in `example/settings.json`
### Run Extension
Run the extension from the command palette by pressing (`Ctrl+Shift+P` or `Cmd+Shift+P` on Mac)
and typing `Run Slither`.### License
MIT