warning | layout | title |
---|---|---|
This is a dynamically generated file. Do not edit manually. |
default |
interface-starts-with-i | Solhint |
Solidity Interfaces names should start with an I
This rule accepts a string option of rule severity. Must be one of "error", "warn", "off". Default to warn.
{
"rules": {
"interface-starts-with-i": "warn"
}
}
interface IFoo { function foo () external; }
interface Foo { function foo () external; }
This rule was introduced in Solhint 4.5.0