| <?xml version="1.0" encoding="UTF-8"?> |
| |
| <!-- |
| 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 module PUBLIC |
| "-//Puppy Crawl//DTD Check Configuration 1.2//EN" |
| "http://www.puppycrawl.com/dtds/configuration_1_2.dtd"> |
| |
| <module name="Checker"> |
| |
| <!-- Checks that property files contain the same keys. --> |
| <!-- See http://checkstyle.sf.net/config_misc.html#Translation --> |
| <module name="Translation"/> |
| |
| <module name="FileLength"/> |
| |
| <!-- All source files should end with a unix-style end of line. --> |
| <module name="NewlineAtEndOfFile"> |
| <!-- |
| Use unix style newlines. When set, the checker ensures the last byte in the file is \n. |
| --> |
| <property name="lineSeparator" value="lf"/> |
| </module> |
| |
| <!-- Following interprets the header file as regular expressions. --> |
| <!-- <module name="RegexpHeader"/> --> |
| |
| <module name="FileTabCharacter"> |
| <property name="eachLine" value="true"/> |
| </module> |
| |
| <module name="RegexpSingleline"> |
| <!-- \s matches whitespace character, $ matches end of line. --> |
| <property name="format" value="^[^\s][^\*].*\s+$"/> |
| <property name="message" value="Line has trailing spaces."/> |
| </module> |
| |
| <module name="TreeWalker"> |
| |
| <!-- required for SuppressWarningsFilter (and other Suppress* rules not used here) --> |
| <!-- see http://checkstyle.sourceforge.net/config_annotation.html#SuppressWarningsHolder --> |
| <module name="SuppressWarningsHolder"/> |
| |
| |
| <!-- Checks for Naming Conventions. --> |
| <!-- See http://checkstyle.sf.net/config_naming.html --> |
| <module name="ConstantName"/> |
| <module name="LocalFinalVariableName"/> |
| <module name="LocalVariableName"> |
| <property name="format" value="^[a-z][a-zA-Z0-9_]*$"/> |
| </module> |
| <module name="MemberName"> |
| <property name="format" value="^[a-z][a-zA-Z0-9_]*$"/> |
| </module> |
| <module name="MethodName"/> |
| <module name="PackageName"/> |
| <module name="ParameterName"/> |
| <module name="StaticVariableName"> |
| <property name="format" value="^[a-z][a-zA-Z0-9_]*$"/> |
| </module> |
| <module name="TypeName"/> |
| |
| |
| <!-- Checks for imports --> |
| <!-- See http://checkstyle.sf.net/config_import.html --> |
| <module name="AvoidStarImport"/> |
| <!-- <module name="IllegalImport"/> --> <!-- defaults to sun.* packages --> |
| <module name="RedundantImport"/> |
| <module name="UnusedImports"/> |
| |
| |
| <!-- Checks for Size Violations. --> |
| <!-- See http://checkstyle.sf.net/config_sizes.html --> |
| <module name="LineLength"> |
| <property name="max" value="120"/> |
| <property name="ignorePattern" value="^ *\* *"/> |
| </module> |
| <module name="MethodLength"> |
| <property name="max" value="200"/> |
| </module> |
| <module name="ParameterNumber"> |
| <property name="max" value="10"/> |
| <property name="ignoreOverriddenMethods" value="true"/> |
| </module> |
| |
| |
| <!-- Checks for whitespace --> |
| <!-- See http://checkstyle.sf.net/config_whitespace.html --> |
| <module name="EmptyForIteratorPad"/> |
| <module name="MethodParamPad"/> |
| <module name="NoWhitespaceAfter"/> |
| <module name="NoWhitespaceBefore"/> |
| <module name="OperatorWrap"/> |
| <module name="ParenPad"/> |
| <module name="TypecastParenPad"/> |
| <module name="WhitespaceAfter"> |
| <property name="tokens" value="COMMA, SEMI"/> |
| </module> |
| <module name="WhitespaceAround"/> |
| |
| |
| <!-- Modifier Checks --> |
| <!-- See http://checkstyle.sf.net/config_modifiers.html --> |
| <module name="ModifierOrder"/> |
| <module name="RedundantModifier"/> |
| |
| |
| <!-- Checks for blocks. You know, those {}'s --> |
| <!-- See http://checkstyle.sf.net/config_blocks.html --> |
| <module name="AvoidNestedBlocks"/> |
| <module name="EmptyBlock"/> |
| <module name="LeftCurly"/> |
| <module name="NeedBraces"/> |
| <module name="RightCurly"/> |
| |
| |
| <!-- Checks for common coding problems --> |
| <!-- See http://checkstyle.sf.net/config_coding.html --> |
| <!-- module name="AvoidInlineConditionals"/ --> |
| <module name="EmptyStatement"/> |
| <module name="EqualsHashCode"/> |
| <module name="IllegalInstantiation"/> |
| |
| |
| <!-- Checks for class design --> |
| <!-- See http://checkstyle.sf.net/config_design.html --> |
| <module name="FinalClass"/> |
| <module name="InterfaceIsType"/> |
| |
| |
| <!-- Miscellaneous other checks. --> |
| <!-- See http://checkstyle.sf.net/config_misc.html --> |
| <!-- <module name="ArrayTypeStyle"/> --> |
| <module name="UpperEll"/> |
| |
| <module name="FileContentsHolder"/> |
| |
| </module> |
| |
| <!-- Support @SuppressWarnings (added in Checkstyle 5.7) --> |
| <!-- see http://checkstyle.sourceforge.net/config.html#SuppressWarningsFilter --> |
| <module name="SuppressWarningsFilter"/> |
| |
| <!-- Checks properties file for a duplicated properties. --> |
| <!-- See http://checkstyle.sourceforge.net/config_misc.html#UniqueProperties --> |
| <module name="UniqueProperties"/> |
| |
| <module name="SuppressionCommentFilter"/> |
| |
| </module> |