How to ignore a complete Java package in Checkstyle
One of my Java projects contains generated code which produces quite a few Checkstyle warnings. To ignore all files in this package, I needed to configure Checkstyle’s module SuppressionFilter as described in Checkstyle’s documentation: File checkstyle.xml (Checkstyle config): <module name=”SuppressionFilter”> <property name=”file” value=”suppressions.xml”/> </module> File suppressions.xml: <?xml version=”1.0″?> <!DOCTYPE suppressions…