2013-05-23 21:47:00 +03:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2013-05-13 16:53:14 -07:00
|
|
|
<!--
|
|
|
|
|
2013-05-16 12:59:40 -07: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
|
2013-05-13 16:53:14 -07:00
|
|
|
|
2013-05-16 12:59:40 -07:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
2013-05-13 16:53:14 -07:00
|
|
|
|
2013-05-16 12:59:40 -07:00
|
|
|
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.
|
2013-05-13 16:53:14 -07:00
|
|
|
|
|
|
|
-->
|
2012-10-26 09:34:48 -07:00
|
|
|
<!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.3//EN" "http://www.puppycrawl.com/dtds/configuration_1_3.dtd">
|
|
|
|
|
|
|
|
<module name="Checker">
|
|
|
|
<property name="severity" value="warning"/>
|
2014-09-15 17:11:40 -05:00
|
|
|
<module name="NewlineAtEndOfFile">
|
|
|
|
<property name="lineSeparator" value="lf"/>
|
|
|
|
</module>
|
|
|
|
<module name="TreeWalker">
|
2012-11-13 20:24:55 -08:00
|
|
|
<module name="AvoidStarImport"/>
|
2012-11-01 18:57:37 -07:00
|
|
|
<module name="EmptyStatement"/>
|
2014-08-26 17:51:29 -07:00
|
|
|
<module name="IllegalInstantiation">
|
|
|
|
<property name="classes" value="java.lang.Boolean,java.lang.Short,java.lang.Integer,java.lang.Long"/>
|
|
|
|
</module>
|
2014-09-06 11:20:56 -07:00
|
|
|
<module name="InterfaceIsType"/>
|
2012-11-10 13:05:45 -08:00
|
|
|
<!--
|
|
|
|
jclouds prefers 120 character line lengths but has many files with
|
|
|
|
longer lines
|
2012-10-26 09:34:48 -07:00
|
|
|
<module name="LineLength">
|
|
|
|
<property name="ignorePattern" value="^import\s.*;$"/>
|
|
|
|
<property name="max" value="120"/>
|
|
|
|
</module>
|
2012-11-10 13:05:45 -08:00
|
|
|
-->
|
2014-08-31 13:34:46 -07:00
|
|
|
<module name="MissingOverride"/>
|
2012-11-01 19:49:46 -07:00
|
|
|
<module name="ModifierOrder"/>
|
2012-11-01 20:11:23 -07:00
|
|
|
<module name="MultipleVariableDeclarations"/>
|
2014-08-26 11:16:24 -07:00
|
|
|
<module name="NoWhitespaceAfter">
|
|
|
|
<!-- ARRAY_INIT disabled -->
|
|
|
|
<property name="tokens" value="BNOT, DEC, DOT, INC, LNOT, UNARY_MINUS, UNARY_PLUS"/>
|
|
|
|
</module>
|
|
|
|
<module name="NoWhitespaceBefore"/>
|
2013-12-12 18:22:46 -08:00
|
|
|
<module name="RedundantImport"/>
|
2014-08-26 12:23:04 -07:00
|
|
|
<module name="RedundantModifier"/>
|
2012-11-04 18:11:12 -08:00
|
|
|
<module name="SimplifyBooleanExpression"/>
|
2014-08-26 11:29:25 -07:00
|
|
|
<module name="TypeName"/>
|
2012-11-04 16:36:01 -08:00
|
|
|
<module name="UnnecessaryParentheses"/>
|
2014-07-18 16:53:16 -07:00
|
|
|
<module name="UnusedImports">
|
|
|
|
<property name="processJavadoc" value="true"/>
|
|
|
|
</module>
|
2015-06-10 13:11:35 +02:00
|
|
|
<module name="IllegalImport">
|
|
|
|
<!-- Avoid importing AutoValue shaded packages such as Guava -->
|
2015-06-25 13:34:10 -07:00
|
|
|
<property name="illegalPkgs" value="sun,autovalue,org.testng.internal"/>
|
2015-06-10 13:11:35 +02:00
|
|
|
</module>
|
2014-05-07 10:32:32 -07:00
|
|
|
<module name="WhitespaceAfter">
|
2014-08-26 10:55:19 -07:00
|
|
|
<!-- TYPECAST disabled -->
|
|
|
|
<property name="tokens" value="COMMA, SEMI"/>
|
2014-05-07 10:32:32 -07:00
|
|
|
</module>
|
2014-05-08 13:30:23 -07:00
|
|
|
<module name="WhitespaceAround">
|
2014-10-03 02:20:39 -05:00
|
|
|
<property name="ignoreEnhancedForColon" value="false" />
|
|
|
|
<!-- TODO: enable LCURLY, RCURLY, SLIST -->
|
|
|
|
<property name="tokens" value="ASSIGN, BAND, BAND_ASSIGN, BOR, BOR_ASSIGN, BSR, BSR_ASSIGN, BXOR, BXOR_ASSIGN, COLON, DIV, DIV_ASSIGN, EQUAL, GE, GT, LAND, LE, LITERAL_ASSERT, LITERAL_CATCH, LITERAL_DO, LITERAL_ELSE, LITERAL_FINALLY, LITERAL_FOR, LITERAL_IF, LITERAL_RETURN, LITERAL_SYNCHRONIZED, LITERAL_TRY, LITERAL_WHILE, LOR, LT, MINUS, MINUS_ASSIGN, MOD, MOD_ASSIGN, NOT_EQUAL, PLUS, PLUS_ASSIGN, QUESTION, SL, SL_ASSIGN, SR, SR_ASSIGN, STAR, STAR_ASSIGN, TYPE_EXTENSION_AND" />
|
2014-05-08 13:30:23 -07:00
|
|
|
</module>
|
2012-10-26 09:34:48 -07:00
|
|
|
</module>
|
2014-05-12 13:30:56 -07:00
|
|
|
<module name="Header">
|
2014-08-18 15:24:11 -06:00
|
|
|
<property name="header" value="/*\n
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more\n
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with\n
|
|
|
|
* this work for additional information regarding copyright ownership.\n
|
|
|
|
* The ASF licenses this file to You under the Apache License, Version 2.0\n
|
|
|
|
* (the "License"); you may not use this file except in compliance with\n
|
|
|
|
* the License. You may obtain a copy of the License at\n
|
|
|
|
*\n
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0\n
|
|
|
|
*\n
|
|
|
|
* Unless required by applicable law or agreed to in writing, software\n
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,\n
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n
|
|
|
|
* See the License for the specific language governing permissions and\n
|
|
|
|
* limitations under the License.\n
|
|
|
|
*/\n"/>
|
2014-05-12 13:30:56 -07:00
|
|
|
<property name="fileExtensions" value="java"/>
|
|
|
|
</module>
|
2014-06-06 19:50:15 -07:00
|
|
|
<module name="RegexpMultiline">
|
|
|
|
<property name="format" value="@author"/>
|
|
|
|
<property name="message" value="Do not use Javadoc @author annotation"/>
|
|
|
|
</module>
|
2015-03-31 13:44:51 -07:00
|
|
|
<module name="RegexpMultiline">
|
|
|
|
<property name="format" value="\r\n"/>
|
|
|
|
<property name="message" value="Do not use Windows line endings"/>
|
2015-04-07 17:56:03 -05:00
|
|
|
<property name="fileExtensions" value="java,xml,json"/>
|
2015-03-31 13:44:51 -07:00
|
|
|
</module>
|
2012-10-26 09:34:48 -07:00
|
|
|
</module>
|