OLD | NEW |
(Empty) | |
| 1 <?xml version="1.0"?> |
| 2 |
| 3 <!DOCTYPE suppressions PUBLIC |
| 4 "-//Puppy Crawl//DTD Suppressions 1.1//EN" |
| 5 "http://www.puppycrawl.com/dtds/suppressions_1_1.dtd"> |
| 6 |
| 7 <suppressions> |
| 8 <suppress checks="FileLength" |
| 9 files="TokenTypes.java" |
| 10 lines="1"/> |
| 11 <suppress checks="MagicNumber" |
| 12 files="UnusedPrivateMethodCheck.java" |
| 13 lines="176"/> |
| 14 <suppress checks="ImportControl" |
| 15 files="NewlineAtEndOfFileCheck.java" |
| 16 lines="27"/> |
| 17 <suppress checks="ImportControl" |
| 18 files="TranslationCheck.java" |
| 19 lines="24"/> |
| 20 <suppress checks="ImportControl" |
| 21 files="SuppressionCommentFilter.java" |
| 22 lines="28"/> |
| 23 <suppress checks="ImportControl" |
| 24 files="SuppressWarningsFilter.java" |
| 25 lines="24"/> |
| 26 <suppress checks="ImportControl" |
| 27 files="SuppressWithNearbyCommentFilter.java" |
| 28 lines="28"/> |
| 29 <suppress id="paramNum" |
| 30 files="LocalizedMessage.java" |
| 31 lines="141,148,181,213"/> |
| 32 |
| 33 <!-- Tone down the checking for test code --> |
| 34 <suppress checks="EmptyBlock" files=".*[\\/]src[\\/]tests[\\/]"/> |
| 35 <suppress checks="ImportControl" files=".*[\\/]src[\\/]tests[\\/]"/> |
| 36 <suppress checks="Javadoc" files=".*[\\/]src[\\/]tests[\\/]"/> |
| 37 <suppress checks="MagicNumber" files=".*[\\/]src[\\/]tests[\\/]"/> |
| 38 <suppress checks="MethodCount" files="[\\/]IndentationCheckTest.java$"/> |
| 39 <suppress checks="EqualsAvoidNull" files="[\\/]Int.*FilterTest.java$"/> |
| 40 |
| 41 <!-- suppressions to remove over time --> |
| 42 <suppress checks="FinalLocalVariable" files=".*[\\/]src[\\/]tests[\\/]"/> |
| 43 <suppress checks="LineLength" files=".*[\\/]src[\\/]tests[\\/]"/> |
| 44 <suppress checks="Name" files=".*[\\/]src[\\/]tests[\\/]"/> |
| 45 |
| 46 <!-- |
| 47 Turn off all checks for Generated and Test code. Fixes issues with using |
| 48 Eclipse plug-in. |
| 49 --> |
| 50 <suppress checks="." files=".*[\\/]grammars[\\/]Generated[a-zA-Z]*\.java"/> |
| 51 <suppress checks="." files=".*[\\/]grammars[\\/]Generated[a-zA-Z]*\.java"/> |
| 52 <suppress checks="." files=".*[\\/]checkstyle[\\/]gui[\\/]"/> |
| 53 </suppressions> |
OLD | NEW |