Permalink
Switch branches/tags
Find file
Fetching contributors…
Cannot retrieve contributors at this time
executable file 33 lines (22 sloc) 1.19 KB
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright 2014 VU University Medical Center.
- Licensed under the Apache License version 2.0 (see http://opensource.org/licenses/Apache-2.0).
-->
<!DOCTYPE suppressions PUBLIC
"-//Puppy Crawl//DTD Suppressions 1.1//EN"
"http://www.puppycrawl.com/dtds/suppressions_1_1.dtd">
<suppressions>
<!-- Exclude source files from the com.recomdata package. -->
<suppress checks="[a-zA-Z0-9]*" files="[\\/]recomdata[\\/]" />
<!--&lt;!&ndash; Exclude source files from the cdisk.odm.jaxb and w3.xmldsig.jaxb packages. &ndash;&gt;-->
<!--<suppress checks="[a-zA-Z0-9]*" files="[\\/]jaxb[\\/]" />-->
<!-- Disable requiring method javadoc in the test cases. -->
<suppress checks="JavadocMethod" files="^*Test\.java$"/>
<!-- Disable requiring package-info.java files in the test cases. -->
<suppress checks="JavadocPackage" files="^*Test\.java$"/>
<!-- Allow magic numbers to occur in the test cases. -->
<suppress checks="MagicNumber" files="^*Test\.java$"/>
<!-- Test cases deal with a lot of static imports; ignore wrong order. -->
<suppress checks="ImportOrder" files="^*Test\.java$"/>
</suppressions>