'How can we ignore some SonarQube rules in Java?
We recently started using SonarQube. We have found some rules that are suggested by SonarQube but we want to ignore them or give them a low priority and even configure the time suggested by SonarQube. For e.g
We want to avoid the rule (and/or configure the priority and time suggested by SonarQube) for
- Document this public class. and
- Complete the task associated to this TODO comment.
I couldn’t find a way to configure this rules to be ignored. We want this kind of rules to be ignored for the whole project not specific classes.
Configuring this values would help us to have a better time estimation to fix major issues and give low priority for the rules like the above two. We are using SonarQube 6
I appericiate your advice.
Solution 1:[1]
If you have the id of the rule ypu want to ignore, then you can add the SuppressWarnings for that
Example:
@SuppressWarnings("squid:S0016")
I dont like this too much and use to add the comment //NOSONAR that tells SonarQube to ignore all errors for a specific line.
Example2:
If I do this:
System.setErr(System.out);
ConsoleHandler h = new ConsoleHandler();
System.setErr(err);
my sonar complains asking me to use logger instead of system.out...
therefore I can silent the warning doing:
System.setErr(System.out); //NOSONAR
ConsoleHandler h = new ConsoleHandler();
System.setErr(err);
Solution 2:[2]
The right thing to do is to put something like this on sonar-project.properties file per project:
sonar.issue.ignore.multicriteria=e1,e2
# tab characters should not be used
sonar.issue.ignore.multicriteria.e1.ruleKey=squid:S00105
sonar.issue.ignore.multicriteria.e1.resourceKey=**/*.java
# right curly braces should be on a new line
sonar.issue.ignore.multicriteria.e2.ruleKey=squid:RightCurlyBraceStartLineCheck
sonar.issue.ignore.multicriteria.e2.resourceKey=**/*.java
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Community |
| Solution 2 | Eduardo Cuomo |
