The {“extends”: “solhint:recommended”} property in a configuration file enables this rule.
Interfaces name should start with I
This rule accepts a string option of rule severity. Must be one of “error”, “warn”, “off”. Default to error.
{
"rules": {
"interface-starts-with-i": "error"
}
}
interface IFoo { function foo () external; }
interface Foo { function foo () external; }
This rule was introduced in Solhint 4.0.0-rc01