You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2015/08/21 11:31:44 UTC

svn commit: r1696914 - /commons/proper/bcel/trunk/checkstyle_suppressions.xml

Author: sebb
Date: Fri Aug 21 09:31:44 2015
New Revision: 1696914

URL: http://svn.apache.org/r1696914
Log:
Never check Maven-generated files
Ignore Magic numbers in test code

Modified:
    commons/proper/bcel/trunk/checkstyle_suppressions.xml

Modified: commons/proper/bcel/trunk/checkstyle_suppressions.xml
URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/checkstyle_suppressions.xml?rev=1696914&r1=1696913&r2=1696914&view=diff
==============================================================================
--- commons/proper/bcel/trunk/checkstyle_suppressions.xml (original)
+++ commons/proper/bcel/trunk/checkstyle_suppressions.xml Fri Aug 21 09:31:44 2015
@@ -21,7 +21,10 @@ limitations under the License.
     "http://www.puppycrawl.com/dtds/suppressions_1_1.dtd">
 <!-- SEE: http://checkstyle.sourceforge.net/config.html#Examples -->
 <suppressions>
-    <suppress checks="LineLength" files="InstructionFinder.java"/>
+     <!-- Maven generated code -->
+    <suppress checks="LineLength"  files="InstructionFinder.java"/>
     <suppress checks="MagicNumber" files="VerifierAppFrame.java"/>
     <suppress checks="MagicNumber" files="VerifyDialog.java"/>
+    <suppress checks="MagicNumber" files="src[/\\]test[/\\]"/>
+    <suppress checks=".*"          files="[/\\]target[/\\]"/>
 </suppressions>