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
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.
If you have the id of the rule ypu want to ignore, then you can add the SuppressWarnings for that
@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.
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);