how to exclude particular rule from sonar checkstyle
sonar version is 8.9
checkstyle version is 9.3
- I am using lombok annotations AllArgsConstructor,NoArgsConstructor etc.This will generate the constructor automatically after build.I have verified the class files.But as per sonar checkstyle rule this is against the rule
**checkstyle:com.puppycrawl.tools.checkstyle.checks.coding.MissingCtorCheck ** here the problem is checkstyle is not analysing the binaries so i have exclude this rule.because of large number of files can’t use @SuppressWarnings .Is there any way to exclude that particular rule using any property of suppression.xml
If so please give the detailed steps