Files
checkstyle/suppressions.xml
T
Oliver Burn 788b41973d Changes to make it possible to identify a module by an id, and then to
suppress messages based on the id. The motivation is to allow for finer
grained suppressions. For example, can enable multiple instances of the
Regexp check, and suppress on the individual instance.
2005-12-29 12:35:00 +00:00

27 lines
829 B
XML
Executable File

<?xml version="1.0"?>
<!DOCTYPE suppressions PUBLIC
"-//Puppy Crawl//DTD Suppressions 1.1//EN"
"http://www.puppycrawl.com/dtds/suppressions_1_1.dtd">
<suppressions>
<suppress checks="FileLength"
files="TokenTypes.java"
lines="1"/>
<suppress checks="MagicNumber"
files="UnusedPrivateMethodCheck.java"
lines="176"/>
<suppress checks="ImportControl"
files="NewlineAtEndOfFileCheck.java"
lines="26"/>
<suppress checks="ImportControl"
files="TranslationCheck.java"
lines="34"/>
<suppress checks="ImportControl"
files="SuppressionCommentFilter.java"
lines="40"/>
<suppress id="paramNum"
files="LocalizedMessage.java"
lines="142"/>
</suppressions>