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