How can one surpress FixInsight warnings locally?
You may use _FIXINSIGHT_ compiler conditional. It works just like a real compiler directive.
For example,
Delphi-Quellcode:
{$IFNDEF _FIXINSIGHT_}
ThisCodeWillBeIgnored(1,2,3);
{$ENDIF}
I have to add this to the documentation. I have never expected that so many people will need this functionality
There must be an option to exclude files. If you got some third party sources, gnugettext.pas for example, you're also going to get warnings on files you definitely don't want to modify.
Yes, this would be great. It's on my todo list.
One last thing: C104 ("Class name should start with 'T'") is true, but I suppose it doesn't apply to attributes.
Agree. I will fix this