warning | layout | title |
---|---|---|
This is a dynamically generated file. Do not edit manually. |
default |
check-send-result | Solhint |
The {"extends": "solhint:recommended"} property in a configuration file enables this rule.
Check result of "send" call.
This rule accepts a string option of rule severity. Must be one of "error", "warn", "off". Default to warn.
{
"rules": {
"check-send-result": "warn"
}
}
if(x.send(55)) {}
x.send(55);
This rule was introduced in Solhint 2.0.0-alpha.0