2003-08-22 01:01:03 -04:00
|
|
|
<?xml version="1.0"?>
|
2004-02-18 18:13:37 -05:00
|
|
|
<!--
|
2006-08-28 02:21:41 -04:00
|
|
|
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
|
2004-02-18 18:13:37 -05:00
|
|
|
|
|
|
|
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.
|
|
|
|
-->
|
2003-08-22 01:01:03 -04:00
|
|
|
|
|
|
|
<!DOCTYPE module PUBLIC
|
|
|
|
"-//Puppy Crawl//DTD Check Configuration 1.1//EN"
|
|
|
|
"http://www.puppycrawl.com/dtds/configuration_1_1.dtd">
|
|
|
|
|
|
|
|
<!-- commons lang customization of default Checkstyle behavior -->
|
|
|
|
<module name="Checker">
|
|
|
|
<property name="localeLanguage" value="en"/>
|
2017-06-06 09:02:09 -04:00
|
|
|
<module name="JavadocPackage"/>
|
2017-06-06 09:05:02 -04:00
|
|
|
<module name="NewlineAtEndOfFile">
|
|
|
|
<property name="lineSeparator" value="lf" />
|
|
|
|
</module>
|
2010-10-07 05:23:59 -04:00
|
|
|
<module name="FileTabCharacter">
|
|
|
|
<property name="fileExtensions" value="java,xml"/>
|
|
|
|
</module>
|
2017-06-06 09:12:06 -04:00
|
|
|
<module name="RegexpSingleline">
|
|
|
|
<!-- \s matches whitespace character, $ matches end of line. -->
|
|
|
|
<property name="format" value="\s+$"/>
|
|
|
|
<property name="message" value="Line has trailing spaces."/>
|
|
|
|
</module>
|
2003-08-22 01:01:03 -04:00
|
|
|
<module name="TreeWalker">
|
2011-09-01 20:36:44 -04:00
|
|
|
<property name="cacheFile" value="target/cachefile"/>
|
2003-08-22 01:01:03 -04:00
|
|
|
<module name="AvoidStarImport"/>
|
|
|
|
<module name="RedundantImport"/>
|
|
|
|
<module name="UnusedImports"/>
|
|
|
|
<module name="NeedBraces"/>
|
|
|
|
<module name="JavadocMethod">
|
|
|
|
<property name="allowUndeclaredRTE" value="true"/>
|
2017-03-05 05:05:23 -05:00
|
|
|
<property name="scope" value="public" />
|
2003-08-22 01:01:03 -04:00
|
|
|
</module>
|
2017-03-09 04:03:56 -05:00
|
|
|
<module name="UpperEll" />
|
2003-08-22 01:01:03 -04:00
|
|
|
</module>
|
|
|
|
</module>
|