slither .
command is checking all contracts in lib folder along with the PuppyRaffle.sol (Section 4)
#163
-
It is checking for vulnerabilities in openzeppelin-contracts and forge-std too, which leads to it generating a huge output which is not even entirely visible in my terminal. Output:
|
Beta Was this translation helpful? Give feedback.
Answered by
EngrPips
Apr 23, 2024
Replies: 1 comment 2 replies
-
Hello @KatrixReloaded, you should set up a {
"detectors_to_exclude": "conformance-to-solidity-naming-conventions,solc-version",
"exclude_informational": false,
"exclude_low": false,
"exclude_medium": false,
"exclude_high": false,
"disable_color": false,
"filter_paths": "(mocks/|test/|script/|upgradedProtocol/)",
"legacy_ast": false,
"exclude_dependencies": true
} |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
KatrixReloaded
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello @KatrixReloaded, you should set up a
slither.config.json
in your directory and put the below configuration in it. It shouldn't check vulnerabilities in dependencies anymore. You can also tweak the configurations to your requirements.