Permalink
Cannot retrieve contributors at this time
Fetching contributors…
| <?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[\\/]" /> | |
| <!--<!– Exclude source files from the cdisk.odm.jaxb and w3.xmldsig.jaxb packages. –>--> | |
| <!--<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> |