Ignoring violations

There are multiple ways to ignore false positives or avoid unwanted violations in CodeScan.

Marking False Positives

When viewing your violations inline, SonarQube™ allows you to mark False Positives to prevent further alerts about certain issues in your code. This will block that violation from appearing until it is unblocked.

This feature will not carry the false positive between projects. For example, if you mark an issue as a false positive in ProjectOne and create ProjectTwo from the same code source, the issue will still be present in ProjectTwo until it is marked otherwise.

Using suppressUnitTestViolations parameter

For each rule we have provided the parameter suppressUnitTestViolations. This stops any violations of this rule being reported in test methods. For example, setting suppressUnitTestViolations to true for the rule AvoidSoqlInLoops would ignore the violation below:

@IsTest
class newClass {
   void method1(){
     for (int i = 0; i < 10; i++){
       insert new Account(name = ‘Name ’ + i);
     }
   }
}

Using @SuppressWarnings

SonarQube™ allows you to mark False Positives to prevent further alerts about certain issues in your code but these changes will not be remembered if you have multiple environments that aren’t linked together.

Using the @SuppressWarnings annotation allows you to block rule violations for certain classes and methods.

The following will ignore all rule violations for the class Test1:

@SuppressWarnings(‘all’)
class newClass {
   void method1(){
     for (int i = 0; i < 10; i++){
       insert new Account(name = ‘Name ’ + i);
     }
   }
}

Whereas this would ignore only the rules given to @SuppressWarnings as parameters within method1:

class newClass {
  @SuppressWarnings(‘cs.AvoidSoqlInLoops’)
   void method1(){
     for (int i = 0; i < 10; i++){
       insert new Account(name = ‘Name ’ + i);
     }
   }
}

The same method can also be used for fields:

class newClass {
  @SuppressWarnings(‘sf:UnusedPrivateField’)
  integer x;
}

The names of the rules can be found in:

The syntax is as follows:

  • Use @SuppressWarnings(‘cs.RULENAME’) for a specific rule name

  • @SuppressWarnings(‘sf:RULENAME’) is also allowed

  • Use @SuppressWarnings(‘cs.RULENAME, cs.OTHERULE’) to specify multiple rules, separating each new rule with a comma

  • Use @SuppressWarnings(‘all’) to ignore all rules

Using //NOSONAR

This can be used to ignore all rules on a single line:

class newClass {
   void method1(){
     for (int i = 0; i < 10; i++){
       insert new Account(name = ‘Name ’ + i); //NOSONAR
     }
   }
}

Last updated