From 05c19e372527461a93e77b217f06474e15df828a Mon Sep 17 00:00:00 2001 From: Sergey <2901744+evercoinx@users.noreply.github.com> Date: Wed, 27 Nov 2024 10:15:07 +0100 Subject: [PATCH] Update slither and solhint configuration --- .solhintignore | 1 + slither.config.json | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.solhintignore b/.solhintignore index 8dd5da53..299427e6 100644 --- a/.solhintignore +++ b/.solhintignore @@ -5,6 +5,7 @@ artifacts/ cache/ coverage/ contracts/ChildPool.sol +contracts/FxBaseRootTunnel.sol contracts/interfaces/IChildPool.sol contracts/libraries/ contracts/mocks/ diff --git a/slither.config.json b/slither.config.json index 1c24e0a7..7b5ceb93 100644 --- a/slither.config.json +++ b/slither.config.json @@ -1,6 +1,6 @@ { "compile_force_framework": "hardhat", "detectors_to_exclude": "calls-loop,incorrect-equality,naming-convention,pragma,solc-version,unused-return,unused-state", - "include_paths": "(MaticX.sol|ValidatorRegistry.sol)", - "filter_paths": "(@openzeppelin/|libraries/|mocks/|state-transfer/)" + "include_paths": "(FxStateChildTunnel.sol|FxStateRootTunnel.sol|MaticX.sol|ValidatorRegistry.sol)", + "filter_paths": "(@openzeppelin/|libraries/|mocks/)" }