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/12/09 11:53:36 UTC

svn commit: r1718811 - /commons/proper/jexl/trunk/src/main/config/checkstyle-suppressions.xml

Author: sebb
Date: Wed Dec  9 10:53:36 2015
New Revision: 1718811

URL: http://svn.apache.org/viewvc?rev=1718811&view=rev
Log:
Add initial checkstyle suppressions file

Added:
    commons/proper/jexl/trunk/src/main/config/checkstyle-suppressions.xml   (with props)

Added: commons/proper/jexl/trunk/src/main/config/checkstyle-suppressions.xml
URL: http://svn.apache.org/viewvc/commons/proper/jexl/trunk/src/main/config/checkstyle-suppressions.xml?rev=1718811&view=auto
==============================================================================
--- commons/proper/jexl/trunk/src/main/config/checkstyle-suppressions.xml (added)
+++ commons/proper/jexl/trunk/src/main/config/checkstyle-suppressions.xml Wed Dec  9 10:53:36 2015
@@ -0,0 +1,31 @@
+<?xml version="1.0"?>
+<!--
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements.  See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to You under the Apache License, Version 2.0
+(the "License"); you may not use this file except in compliance with
+the License.  You may obtain a copy of the License at
+
+     http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+-->
+
+<!DOCTYPE suppressions PUBLIC
+    "-//Puppy Crawl//DTD Suppressions 1.1//EN"
+    "http://www.puppycrawl.com/dtds/suppressions_1_1.dtd">
+
+<suppressions>
+    <!-- On Windows, it appears that Checkstyle matches files using \ delims -->
+    <suppress checks="JavadocPackage" files="[/\\]examples[/\\].*\.java"/>
+    <suppress checks="JavadocPackage" files="[/\\]test[/\\].*\.java"/>
+    <suppress checks="VisibilityModifier" files="[/\\]internal[/\\].*\.java"/>
+    <suppress checks="MethodLength" files="[/\\]internal[/\\].*\.java"/>
+    <!-- Comment suppression does not work for these files even with checkstyle 6.13 -->
+    <suppress checks="MagicNumber" files="[/\\]internal[/\\]TemplateEngine\.java"/>
+</suppressions>
\ No newline at end of file

Propchange: commons/proper/jexl/trunk/src/main/config/checkstyle-suppressions.xml
------------------------------------------------------------------------------
    svn:eol-style = native