Skip to content

Commit

Permalink
add ignores for false positives
Browse files Browse the repository at this point in the history
  • Loading branch information
taayyohh committed Jan 27, 2025
1 parent 471fb49 commit 4335ee2
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion slither.config.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,23 @@
{
"filter_paths": "lib|node_modules|test|script",
"disable_color": true,
"exclude_informational": true,
"exclude_informational": false,
"exclude_low": false,
"exclude_medium": false,
"exclude_high": false,
"exclude_dependencies": true,
"detectors_to_exclude": [
"dangerous-strict-equalities",
"reentrancy-vulnerabilities-1",
"unused-return",
"local-variable-shadowing",
"missing-zero-address-validation",
"reentrancy-vulnerabilities-2",
"reentrancy-vulnerabilities-3",
"block-timestamp",
"state-variables-that-could-be-declared-constant",
"state-variables-that-could-be-declared-immutable"
],
"ignore_paths": [
"node_modules/@openzeppelin",
"lib/openzeppelin-contracts"
Expand Down

0 comments on commit 4335ee2

Please sign in to comment.