Description
This plugin is used to exclude some violations in a fine-grained way. It allows to define some exclusion patterns to switch off violations :
- By rule
- By file
- By line or range of lines
Installation
Download the plugin from Update Center and restart server.
If you don't have access to Internet, then manually download JAR file into $SONAR_HOME/extensions/plugins and restart server.
Configuration
The configuration of the plugin is done in the Web admin console, where you can specify the exclusion patterns in the textarea (one per line):
- Comments start with #
- Blank lines are allowed
- A line defines 3 fields: resource key, rule key and range of lines.
Example:
# suppress all violations *;*;* # exclude the Java file com.foo.Bar com.foo.Bar;*;* # exclude a Java package com.foo.*;*;* # exclude a specific rule *;checkstyle:com.puppycrawl.tools.checkstyle.checks.design.DesignForExtensionCheck;* # exclude a specific rule on a specific file com.foo.Bar;checkstyle:com.puppycrawl.tools.checkstyle.checks.design.DesignForExtensionCheck;* # exclude on specific lines 10, 25 and 90 com.foo.Bar;*;[10,25,90] # exclude on a range of lines com.foo.Bar;*;[10-90] # exclude on many ranges of lines com.foo.Bar;*;[10-90,92,98,120-150]
Note: prior to version 1.1, the only way to specify exclusions was to write them in a file and fill the "sonar.switchoffviolations.configFile" property with the location of that file. This feature is still supported, even if it is best to use the Web admin console to configure the plugin.
Releases

