Enforce the return values of a function to be named
function checkBalance(address wallet) external view returns(uint256) {}
function checkBalance(address wallet) external view returns(uint256 retBalance) {}
named-return-values on Solhint's documentation.