From fe19871eb638f36cdd5862fef8808eedf5df7290 Mon Sep 17 00:00:00 2001 From: Klemen <64400885+zajck@users.noreply.github.com> Date: Thu, 30 Nov 2023 12:42:23 +0100 Subject: [PATCH] exclude examples and solc-version detector (#828) --- slither.config.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/slither.config.json b/slither.config.json index 0eea8ca07..62ac4c992 100644 --- a/slither.config.json +++ b/slither.config.json @@ -1,4 +1,4 @@ { - "filter_paths": "(contracts/mock/|contracts/ext_libs/|node_modules)", - "detectors_to_exclude": "uninitialized-local,timestamp, assembly,naming-convention,similar-names" + "filter_paths": "(contracts/mock/|contracts/ext_libs/|contracts/example/|node_modules)", + "detectors_to_exclude": "uninitialized-local,timestamp,assembly,naming-convention,similar-names,solc-version" }