LL022
Interface naming convention
Object Pascal — Delphi & Free Pascal
Info
Style
Interfaces should follow the I prefix convention for discoverability
interfaces should follow the I prefix convention for discoverability.
Why this severity
interfaces should follow the I prefix convention for discoverability.
Known false positives
none expected in standard Delphi code.
Remediation example
type
IMyInterface = interface
procedure DoWork;
end;