sonar-delphi icon indicating copy to clipboard operation
sonar-delphi copied to clipboard

SonarQube Delphi Plugin

Results 27 sonar-delphi issues
Sort by recently updated
recently updated
newest added

``` Delphi unit InterfaceMethodResolutionClause; interface type IInterfaceA = interface ['{D9434374-0D61-44A6-A84B-06F574F140BE}'] procedure DoSomething; end; IInterfaceB = interface ['{D9434374-0D61-44A6-A84B-06F574F140BE}'] procedure DoSomethingToo; end; TMyClass = class(TInterfacedObject, IInterfaceA, IInterfaceB) public procedure DoSomething; procedure IInterfaceB.DoSomethingToo...

grammar bug

The following code causes a parser error because PACKAGE is treated as a keyword. ``` Delphi unit PackageAsIdentifier; interface implementation var Package: Boolean; end. ```

grammar bug

http://docs.sonarqube.org/display/DEV/Internationalization

An issue is created on a file as soon as the line coverage on this file is less than the required threshold. It gives the number of lines to be...

enhancement

Even when the Cyclomatic Complexity of a class is very high, this complexity might be well distributed among all methods. Nevertheless, most of the time, a very complex class is...

enhancement

There are ignored tests that should be fixed.