Thank you for your reply.
Regarding excluding code from being checked, you mean like this?
Take this:
Delphi-Quellcode:
unit SomeUnit;
interface
type
TParent =
class
procedure someVirtualMethod();
virtual;
end;
TChild =
class(TParent)
procedure someVirtualMethod();
override;
end;
implementation
{ TParent }
procedure TParent.someVirtualMethod();
begin
WriteLn('
Quack!');
end;
{ TChild }
{$IFNDEF _FIXINSIGHT_}
procedure TChild.someVirtualMethod();
begin
// No quack at all
end;
{$ENDIF _FIXINSIGHT_}
end.
Do you think it would also be possible to further specify which warning or convention to ignore? In this case, I'd only like to ignore a W519 but lose all the other cool warnings and conventions as well.