Check that all public or external functions are override. This is iseful to make sure that the whole API is extracted in an interface.
pragma solidity ^0.7.0;
contract Foo {
function foo() public {}
}
pragma solidity ^0.7.0;
contract Foo is FooInterface {
function foo() public override {}
}
comprehensive-interface on Solhint's documentation.