|
| 1 | +<?xml version="1.0"?> |
| 2 | +<!-- |
| 3 | +
|
| 4 | + Licensed to the Apache Software Foundation (ASF) under one |
| 5 | + or more contributor license agreements. See the NOTICE file |
| 6 | + distributed with this work for additional information |
| 7 | + regarding copyright ownership. The ASF licenses this file |
| 8 | + to you under the Apache License, Version 2.0 (the |
| 9 | + "License"); you may not use this file except in compliance |
| 10 | + with the License. You may obtain a copy of the License at |
| 11 | +
|
| 12 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | +
|
| 14 | + Unless required by applicable law or agreed to in writing, |
| 15 | + software distributed under the License is distributed on an |
| 16 | + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 17 | + KIND, either express or implied. See the License for the |
| 18 | + specific language governing permissions and limitations |
| 19 | + under the License. |
| 20 | +
|
| 21 | +--> |
| 22 | +<!DOCTYPE module PUBLIC |
| 23 | + "-//Puppy Crawl//DTD Check Configuration 1.3//EN" |
| 24 | + "http://checkstyle.sourceforge.net/dtds/configuration_1_3.dtd"> |
| 25 | + |
| 26 | +<!-- |
| 27 | + Checkstyle configuration that checks the Pax Web coding conventions. |
| 28 | +--> |
| 29 | + |
| 30 | +<module name="Checker"> |
| 31 | + |
| 32 | + <!-- We want yellow markers in Eclipse by default, not red ones. --> |
| 33 | + <property name="severity" value="warning" /> |
| 34 | + |
| 35 | + <property name="fileExtensions" value="java, properties, xml" /> |
| 36 | + |
| 37 | + <!-- Checks whether files end with a new line. --> |
| 38 | + <!-- See http://checkstyle.sf.net/config_misc.html#NewlineAtEndOfFile --> |
| 39 | + <!-- module name="NewlineAtEndOfFile"/ --> |
| 40 | + |
| 41 | + <!-- Checks for Size Violations. --> |
| 42 | + <!-- See http://checkstyle.sf.net/config_sizes.html --> |
| 43 | + <module name="FileLength"> |
| 44 | + <property name="max" value="3500" /> |
| 45 | + <property name="fileExtensions" value="java" /> |
| 46 | + </module> |
| 47 | + |
| 48 | + <!-- Checks for whitespace --> |
| 49 | + <!-- See http://checkstyle.sf.net/config_whitespace.html --> |
| 50 | + <!--<module name="FileTabCharacter">--> |
| 51 | + <!--<property name="fileExtensions" value="java" />--> |
| 52 | + <!--</module>--> |
| 53 | + |
| 54 | + <module name="TreeWalker"> |
| 55 | + |
| 56 | + <property name="cacheFile" value="${checkstyle.cache.file}" /> |
| 57 | + |
| 58 | + <!-- Checks for Javadoc comments. --> |
| 59 | + <!-- See http://checkstyle.sf.net/config_javadoc.html --> |
| 60 | + <!-- module name="JavadocMethod"/ --> |
| 61 | + <!-- module name="JavadocType"/ --> |
| 62 | + <!-- module name="JavadocVariable"/ --> |
| 63 | + |
| 64 | + |
| 65 | + <!-- Checks for Naming Conventions. --> |
| 66 | + <!-- See http://checkstyle.sf.net/config_naming.html --> |
| 67 | + <module name="MemberName"/> |
| 68 | + <module name="ConstantName"/> |
| 69 | + <module name="LocalVariableName" /> |
| 70 | + <module name="MethodName" /> |
| 71 | + <module name="PackageName" /> |
| 72 | + <module name="LocalFinalVariableName" /> |
| 73 | + <module name="StaticVariableName" /> |
| 74 | + |
| 75 | + <!-- allow leading underscore on parameters to avoid variable hiding --> |
| 76 | + <module name="ParameterName"> |
| 77 | + <property name="format" value="^_?[a-z][a-zA-Z0-9]*$" /> |
| 78 | + </module> |
| 79 | + |
| 80 | + <!-- Allow an optional prefix of "_24" or "_24t" --> |
| 81 | + <module name="TypeName"> |
| 82 | + <property name="format" value="^(((_24(t)?)?[A-Z][A-Za-z0-9]*))$" /> |
| 83 | + </module> |
| 84 | + |
| 85 | + <!-- Checks for imports --> |
| 86 | + <!-- See http://checkstyle.sf.net/config_import.html --> |
| 87 | + <module name="AvoidStarImport" /> |
| 88 | + <module name="IllegalImport" /> |
| 89 | + <module name="RedundantImport" /> |
| 90 | + <module name="UnusedImports"> |
| 91 | + <property name="processJavadoc" value="true" /> |
| 92 | + </module> |
| 93 | + |
| 94 | + <!-- Disabled, not compatible with Eclipse formatter --> |
| 95 | + <!-- <module name="LineLength"> <property name="max" value="100" /> <property |
| 96 | + name="ignorePattern" value="@version|@see|http://"/> </module> --> |
| 97 | + |
| 98 | + |
| 99 | + <!-- Disabled, not compatible with Eclipse formatter --> |
| 100 | + <!-- <module name="Indentation"> <property name="caseIndent" value="0"/> </module> --> |
| 101 | + |
| 102 | + |
| 103 | + <module name="MethodLength"> |
| 104 | + <property name="max" value="200" /> |
| 105 | + </module> |
| 106 | + <module name="ParameterNumber"> |
| 107 | + <property name="max" value="10" /> |
| 108 | + </module> |
| 109 | + |
| 110 | + |
| 111 | + <!-- Checks for blocks. You know, those {}'s --> |
| 112 | + <!-- See http://checkstyle.sf.net/config_blocks.html --> |
| 113 | + <!-- module name="EmptyBlock"/ --> |
| 114 | + <module name="NeedBraces" /> |
| 115 | + <module name="LeftCurly"> |
| 116 | + <property name="option" value="eol" /> |
| 117 | + </module> |
| 118 | + <module name="RightCurly" /> |
| 119 | + |
| 120 | + <!-- Checks for common coding problems --> |
| 121 | + <!-- See http://checkstyle.sf.net/config_coding.html --> |
| 122 | + <module name="EmptyStatement" /> |
| 123 | + <module name="EqualsHashCode" /> |
| 124 | + <module name="InnerAssignment"/> |
| 125 | + <module name="DefaultComesLast" /> |
| 126 | + <module name="MissingSwitchDefault" /> |
| 127 | + <module name="FallThrough" /> |
| 128 | + <module name="MultipleVariableDeclarations" /> |
| 129 | + |
| 130 | + <!-- Checks for class design --> |
| 131 | + <!-- See http://checkstyle.sf.net/config_design.html --> |
| 132 | + <!-- module name="DesignForExtension"/ --> |
| 133 | + <module |
| 134 | + name="com.puppycrawl.tools.checkstyle.checks.design.DesignForExtensionCheck"> |
| 135 | + <property name="severity" value="ignore" /> |
| 136 | + </module> |
| 137 | + |
| 138 | + <!-- module name="FinalClass"/ --> |
| 139 | + <module name="InterfaceIsType"/> |
| 140 | + |
| 141 | + <!-- allow public members fooRule for JUnit rules --> |
| 142 | + <module name="VisibilityModifier"> |
| 143 | + <property name="packageAllowed" value="true" /> |
| 144 | + <property name="protectedAllowed" value="true" /> |
| 145 | + <property name="publicMemberPattern" value="^serialVersionUID|.*Rule$" /> |
| 146 | + <property name="severity" value="warning" /> |
| 147 | + </module> |
| 148 | + |
| 149 | + |
| 150 | + <!-- Miscellaneous other checks. --> |
| 151 | + <!-- See http://checkstyle.sf.net/config_misc.html --> |
| 152 | + <!-- module name="ArrayTypeStyle"/ --> |
| 153 | + <!-- module name="FinalParameters"/ --> |
| 154 | + <!-- Line with Trailing Spaces (disabled as it's to noisy) <module name="GenericIllegalRegexp"> |
| 155 | + <property name="format" value="\s+$"/> <property name="message" value="Line has trailing |
| 156 | + spaces."/> </module> --> |
| 157 | + <module name="UpperEll" /> |
| 158 | + |
| 159 | + <module name="WhitespaceAround"> |
| 160 | + <property name="tokens" value="" /> |
| 161 | + </module> |
| 162 | + <module name="StringLiteralEquality" /> |
| 163 | + <module name="NoFinalizer" /> |
| 164 | + <module name="MissingOverride" /> |
| 165 | + <module name="HideUtilityClassConstructor" /> |
| 166 | + <!-- module name="EqualsAvoidNull"/ --> |
| 167 | + <module name="ModifiedControlVariable" /> |
| 168 | + <module name="DeclarationOrder" /> |
| 169 | + <!--module name="MultipleStringLiterals"/ --> |
| 170 | + <module name="OneStatementPerLine" /> |
| 171 | + <module name="ExplicitInitialization" /> |
| 172 | + <module name="ModifierOrder" /> |
| 173 | + <module name="RedundantModifier" /> |
| 174 | + |
| 175 | + <module name="HiddenField"> |
| 176 | + <property name="ignoreConstructorParameter" value="true" /> |
| 177 | + <property name="ignoreSetter" value="true" /> |
| 178 | + </module> |
| 179 | + |
| 180 | + |
| 181 | + <module name="IllegalCatch" /> |
| 182 | + <module name="IllegalInstantiation" /> |
| 183 | + <module name="IllegalThrows" /> |
| 184 | + <module name="MultipleVariableDeclarations" /> |
| 185 | + <module name="PackageDeclaration" /> |
| 186 | + <module name="ParameterAssignment" /> |
| 187 | + <module name="SimplifyBooleanExpression" /> |
| 188 | + <module name="SimplifyBooleanReturn" /> |
| 189 | + |
| 190 | + <module name="NestedIfDepth"> |
| 191 | + <property name="max" value="3" /> |
| 192 | + </module> |
| 193 | + |
| 194 | + <module name="NestedTryDepth" /> |
| 195 | + <module name="SuperClone" /> |
| 196 | + <module name="SuperFinalize" /> |
| 197 | + |
| 198 | + <!-- allow usage of CHECKSTYLE:OFF and CHECKSTYLE:ON --> |
| 199 | + <module name="SuppressionCommentFilter" /> |
| 200 | + |
| 201 | + <module name="SuppressWithNearbyCommentFilter"> |
| 202 | + <property name="commentFormat" value="CHECKSTYLE:SKIP" /> |
| 203 | + <property name="checkFormat" value=".*" /> |
| 204 | + <property name="influenceFormat" value="1" /> |
| 205 | + </module> |
| 206 | + |
| 207 | + </module> |
| 208 | + |
| 209 | +</module> |
0 commit comments