Hi, while generating custom rules through the maven plugin I am able to get the custom rules in the SonarQube server while scanning any project. But while analyzing the same project through sonarlint those custom rules are not reflected in the sonar report. Although have set the sonarLintSupported tag to true in the plugin config.
Here is my sonar plugin configuration :
<plugin> <groupId>org.sonarsource.sonar-packaging-maven-plugin</groupId> <artifactId>sonar-packaging-maven-plugin</artifactId> <version>1.18.0.372</version> <extensions>true</extensions> <configuration> <pluginKey>customrules</pluginKey> <!-- the entry-point class that extends org.sonar.api.SonarPlugin --> <pluginClass>com.company.CustomPlugin</pluginClass> <pluginDescription> Demo Custom plugin for Sonar </pluginDescription> <sonarLintSupported>true</sonarLintSupported> </configuration> </plugin>
Am I missing something here?