To test your project using slither, here is a sample slither.config.json
:
{
"filter_paths": "lib",
"solc_remaps": [
"ds-test/=lib/ds-test/src/",
"forge-std/=lib/forge-std/src/",
]
}
See the slither wiki for more information.
To test your project using mythril, here is a sample mythril.config.json
:
{
"remappings": [
"ds-test/=lib/ds-test/src/",
"forge-std/=lib/forge-std/src/",
],
"optimizer": {
"enabled": true,
"runs": 200
}
}
See the mythril docs for more information.