I have created a sonarqube custom rule for Java. It seems to be working when I check it in the sonarqube server UI.
I have configured sonarlint with my eclipse but sonarlint is not reporting any error for my custom rule. How shall I add that, so that the sonarlint displays the error for my custom rule after analysis.
I am using:
javaFileScannerContext.addIssue(importTree, this, "Avoid imports (3rd party imports)");
to add the issue. How can this issue be reported on eclipse side?