Hi
I am using Sonarlint 3.2.0 version on Eclipse Neon.3 Release (4.6.3) with SonarQube 5.6
I bound my project with sonarqube server and sonarlint reports all the issues reported in the server.
The problem is sonarlint also displays additional issues as well which are not shown in sonarqube server.
We are using a custom quality profile but all rules are of squid type (nothing from findbugs or other 3rd party tools)
Here is a sample code
public class XYZ implements ABC{
@Override
public void method() throws XYZException {
// TBD
}
}
This code generates the following issue in sonarlint
"throws" declarations should not be superfluous (squid:RedundantThrowsDeclarationCheck)
but this is not reported by sonarqube server.
Can you let us know why sonarlint is picking up additional issues?
I am expecting the number of issues should be same as int the server and not more. Isn't that a correct assumption?
Thanks in advance.
Regards
Kaustav