Skip to content

Commit

Permalink
Enable running slither as pre-commit hook
Browse files Browse the repository at this point in the history
  • Loading branch information
dbast committed Aug 2, 2024
1 parent 9a5b4f5 commit fda26fa
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .pre-commit-hooks.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
- id: slither
name: Slither
description: Run Slither on your project
entry: slither .
pass_filenames: false
language: python
files: \.sol$
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,13 @@ docker run -it -v /home/share:/share trailofbits/eth-security-toolbox
### Integration

* For GitHub action integration, use [slither-action](https://github.com/marketplace/actions/slither-action).
* For pre-commit integratio, use (replace `$GIT_TAG` with real tag)
```
- repo: https://github.com/crytic/slither
rev: $GIT_TAG
hooks:
- slither
```
* To generate a Markdown report, use `slither [target] --checklist`.
* To generate a Markdown with GitHub source code highlighting, use `slither [target] --checklist --markdown-root https://github.com/ORG/REPO/blob/COMMIT/` (replace `ORG`, `REPO`, `COMMIT`)

Expand Down

0 comments on commit fda26fa

Please sign in to comment.