SonarQube Exclude a directory
I am trying to exclude a directory from being analyzed by Sonar. I have the following properties defined in my sonar-project.properties file: sonar.sources=src/java … Read more
I am trying to exclude a directory from being analyzed by Sonar. I have the following properties defined in my sonar-project.properties file: sonar.sources=src/java … Read more
Is it possible to turn off sonar (www.sonarsource.org) measurements for specific blocks of code, which one doesn’t want to be measured? An example … Read more
If this class is only a utility class, you should make the class final and define a private constructor: public final class FilePathHelper … Read more