Merge pull request #2071 from utx0/master

Write `slither.db.json` file on each save_results_to_hide
pull/2473/head
alpharush 6 months ago committed by GitHub
commit 23006f5405
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 5
      .gitignore
  2. 1
      slither/core/slither_core.py

5
.gitignore vendored

@ -114,4 +114,7 @@ test_artifacts/
crytic-export/
# Auto-generated Github pages docs
docs/
docs/
# slither.db.json
slither.db.json

@ -524,6 +524,7 @@ class SlitherCore(Context):
def save_results_to_hide(self, results: List[Dict]) -> None:
self._results_to_hide += results
self.write_results_to_hide()
def add_path_to_filter(self, path: str):
"""

Loading…
Cancel
Save