Yuta HIGUCHI | f980844 | 2014-03-20 15:56:50 -0700 | [diff] [blame] | 1 | <?xml version="1.0"?> |
| 2 | <!DOCTYPE module PUBLIC |
Ray Milkey | 3f5ef56 | 2014-03-25 17:11:19 -0700 | [diff] [blame] | 3 | "-//Puppy Crawl//DTD Check Configuration 1.3//EN" |
| 4 | "http://www.puppycrawl.com/dtds/configuration_1_3.dtd"> |
Yuta HIGUCHI | f980844 | 2014-03-20 15:56:50 -0700 | [diff] [blame] | 5 | |
| 6 | |
| 7 | <!-- |
| 8 | |
| 9 | Checkstyle configuration that checks the sun coding conventions from: |
| 10 | |
| 11 | - the Java Language Specification at |
| 12 | http://java.sun.com/docs/books/jls/second_edition/html/index.html |
| 13 | |
| 14 | - the Sun Code Conventions at http://java.sun.com/docs/codeconv/ |
| 15 | |
| 16 | - the Javadoc guidelines at |
| 17 | http://java.sun.com/j2se/javadoc/writingdoccomments/index.html |
| 18 | |
| 19 | - the JDK Api documentation http://java.sun.com/j2se/docs/api/index.html |
| 20 | |
| 21 | - some best practices |
| 22 | |
| 23 | Checkstyle is very configurable. Be sure to read the documentation at |
| 24 | http://checkstyle.sf.net (or in your downloaded distribution). |
| 25 | |
| 26 | Most Checks are configurable, be sure to consult the documentation. |
| 27 | |
| 28 | To completely disable a check, just comment it out or delete it from the file. |
| 29 | |
| 30 | Finally, it is worth reading the documentation. |
| 31 | |
| 32 | --> |
| 33 | |
Ray Milkey | b5716c5 | 2014-04-07 11:38:27 -0700 | [diff] [blame] | 34 | |
| 35 | <!-- |
| 36 | The default severity setting in checkstyle is 'error', so some |
| 37 | of the rules below are configured to change the severity to |
| 38 | 'warning'. Over time, these 'warning' settings should be |
| 39 | removed as more of the ONOS source code is modified to |
| 40 | follow the recommended rules. |
| 41 | --> |
| 42 | |
| 43 | |
| 44 | |
Yuta HIGUCHI | f980844 | 2014-03-20 15:56:50 -0700 | [diff] [blame] | 45 | <module name="Checker"> |
| 46 | <!-- |
| 47 | If you set the basedir property below, then all reported file |
| 48 | names will be relative to the specified directory. See |
| 49 | http://checkstyle.sourceforge.net/5.x/config.html#Checker |
| 50 | |
| 51 | <property name="basedir" value="${basedir}"/> |
| 52 | --> |
| 53 | <!-- Checks that a package-info.java file exists for each package. --> |
| 54 | <!-- See http://checkstyle.sf.net/config_javadoc.html#JavadocPackage --> |
| 55 | <!-- ONOS does not currently supply package level Javadoc information |
Ray Milkey | b5716c5 | 2014-04-07 11:38:27 -0700 | [diff] [blame] | 56 | in package-info files --> |
Yuta HIGUCHI | f980844 | 2014-03-20 15:56:50 -0700 | [diff] [blame] | 57 | <!-- <module name="JavadocPackage"/> --> |
| 58 | |
| 59 | <!-- Checks whether files end with a new line. --> |
| 60 | <!-- See http://checkstyle.sf.net/config_misc.html#NewlineAtEndOfFile --> |
Ray Milkey | 0f913a0 | 2014-04-07 20:58:17 -0700 | [diff] [blame] | 61 | <module name="NewlineAtEndOfFile"/> |
Yuta HIGUCHI | f980844 | 2014-03-20 15:56:50 -0700 | [diff] [blame] | 62 | |
| 63 | <!-- Checks that property files contain the same keys. --> |
| 64 | <!-- See http://checkstyle.sf.net/config_misc.html#Translation --> |
| 65 | <module name="Translation"/> |
Ray Milkey | 3f5ef56 | 2014-03-25 17:11:19 -0700 | [diff] [blame] | 66 | |
Yuta HIGUCHI | f980844 | 2014-03-20 15:56:50 -0700 | [diff] [blame] | 67 | <!-- Checks for Size Violations. --> |
| 68 | <!-- See http://checkstyle.sf.net/config_sizes.html --> |
Ray Milkey | 0b122ed | 2014-04-14 10:06:03 -0700 | [diff] [blame] | 69 | <module name="FileLength"/> |
Ray Milkey | 3f5ef56 | 2014-03-25 17:11:19 -0700 | [diff] [blame] | 70 | |
Yuta HIGUCHI | f980844 | 2014-03-20 15:56:50 -0700 | [diff] [blame] | 71 | <!-- Checks for whitespace --> |
| 72 | <!-- See http://checkstyle.sf.net/config_whitespace.html --> |
| 73 | <module name="FileTabCharacter"/> |
| 74 | |
| 75 | <!-- Miscellaneous other checks. --> |
| 76 | <!-- See http://checkstyle.sf.net/config_misc.html --> |
| 77 | <module name="RegexpSingleline"> |
Ray Milkey | 3f5ef56 | 2014-03-25 17:11:19 -0700 | [diff] [blame] | 78 | <property name="format" value="\s+$"/> |
| 79 | <property name="minimum" value="0"/> |
| 80 | <property name="maximum" value="0"/> |
| 81 | <property name="message" value="Line has trailing spaces."/> |
Yuta HIGUCHI | f980844 | 2014-03-20 15:56:50 -0700 | [diff] [blame] | 82 | </module> |
| 83 | |
| 84 | <!-- Checks for Headers --> |
| 85 | <!-- See http://checkstyle.sf.net/config_header.html --> |
| 86 | <!-- <module name="Header"> --> |
| 87 | <!-- <property name="headerFile" value="${checkstyle.header.file}"/> --> |
| 88 | <!-- <property name="fileExtensions" value="java"/> --> |
| 89 | <!-- </module> --> |
| 90 | |
Ray Milkey | 5df613b | 2014-04-15 10:50:56 -0700 | [diff] [blame] | 91 | <module name="SuppressionCommentFilter"> |
Ray Milkey | 098466c | 2014-04-22 11:36:46 -0700 | [diff] [blame] | 92 | <property name="offCommentFormat" value="CHECKSTYLE:OFF"/> |
| 93 | <property name="onCommentFormat" value="CHECKSTYLE:ON"/> |
Ray Milkey | 5df613b | 2014-04-15 10:50:56 -0700 | [diff] [blame] | 94 | </module> |
Yuta HIGUCHI | f980844 | 2014-03-20 15:56:50 -0700 | [diff] [blame] | 95 | <module name="TreeWalker"> |
| 96 | |
Ray Milkey | 5df613b | 2014-04-15 10:50:56 -0700 | [diff] [blame] | 97 | <module name="FileContentsHolder"/> |
Yuta HIGUCHI | f980844 | 2014-03-20 15:56:50 -0700 | [diff] [blame] | 98 | <!-- Checks for Javadoc comments. --> |
| 99 | <!-- See http://checkstyle.sf.net/config_javadoc.html --> |
Ray Milkey | b5716c5 | 2014-04-07 11:38:27 -0700 | [diff] [blame] | 100 | <module name="JavadocMethod"> |
Ray Milkey | 098466c | 2014-04-22 11:36:46 -0700 | [diff] [blame] | 101 | <property name="severity" value="warning"/> |
Ray Milkey | b5716c5 | 2014-04-07 11:38:27 -0700 | [diff] [blame] | 102 | </module> |
| 103 | <module name="JavadocType"> |
Ray Milkey | 098466c | 2014-04-22 11:36:46 -0700 | [diff] [blame] | 104 | <property name="severity" value="warning"/> |
Ray Milkey | b5716c5 | 2014-04-07 11:38:27 -0700 | [diff] [blame] | 105 | </module> |
Yuta HIGUCHI | f980844 | 2014-03-20 15:56:50 -0700 | [diff] [blame] | 106 | <module name="JavadocVariable"> |
Ray Milkey | 3f5ef56 | 2014-03-25 17:11:19 -0700 | [diff] [blame] | 107 | <!-- Suppress check for private member Javadocs. |
| 108 | Possibly revist fixing these. --> |
| 109 | <property name="scope" value="public"/> |
Ray Milkey | b5716c5 | 2014-04-07 11:38:27 -0700 | [diff] [blame] | 110 | <property name="severity" value="warning"/> |
Ray Milkey | 3f5ef56 | 2014-03-25 17:11:19 -0700 | [diff] [blame] | 111 | </module> |
Ray Milkey | b41100a | 2014-04-10 10:42:15 -0700 | [diff] [blame] | 112 | <module name="JavadocStyle"/> |
Yuta HIGUCHI | f980844 | 2014-03-20 15:56:50 -0700 | [diff] [blame] | 113 | |
| 114 | |
| 115 | <!-- Checks for Naming Conventions. --> |
| 116 | <!-- See http://checkstyle.sf.net/config_naming.html --> |
Ray Milkey | ec49771 | 2014-03-20 17:51:22 -0700 | [diff] [blame] | 117 | <module name="ConstantName"> |
Ray Milkey | 3f5ef56 | 2014-03-25 17:11:19 -0700 | [diff] [blame] | 118 | <!-- ONOS allows the name "log" for static final Loggers --> |
| 119 | <property name="format" |
| 120 | value="^log$|^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$"/> |
| 121 | </module> |
Yuta HIGUCHI | f980844 | 2014-03-20 15:56:50 -0700 | [diff] [blame] | 122 | <module name="LocalFinalVariableName"/> |
Yuta HIGUCHI | f980844 | 2014-03-20 15:56:50 -0700 | [diff] [blame] | 123 | |
Ray Milkey | 2476cac | 2014-04-08 11:03:21 -0700 | [diff] [blame] | 124 | <module name="LocalVariableName"/> |
Ray Milkey | b5716c5 | 2014-04-07 11:38:27 -0700 | [diff] [blame] | 125 | |
Ray Milkey | 2476cac | 2014-04-08 11:03:21 -0700 | [diff] [blame] | 126 | <module name="MemberName"/> |
Ray Milkey | 7531a34 | 2014-04-11 15:08:12 -0700 | [diff] [blame] | 127 | <module name="MethodName"/> |
Ray Milkey | b5716c5 | 2014-04-07 11:38:27 -0700 | [diff] [blame] | 128 | <module name="PackageName"/> |
Ray Milkey | 9526d6f | 2014-04-10 14:54:15 -0700 | [diff] [blame] | 129 | <module name="ParameterName"/> |
Ray Milkey | 94b41b5 | 2014-04-10 11:13:06 -0700 | [diff] [blame] | 130 | <module name="StaticVariableName"/> |
Ray Milkey | b5716c5 | 2014-04-07 11:38:27 -0700 | [diff] [blame] | 131 | <module name="TypeName"/> |
Yuta HIGUCHI | f980844 | 2014-03-20 15:56:50 -0700 | [diff] [blame] | 132 | |
| 133 | <!-- Checks for imports --> |
| 134 | <!-- See http://checkstyle.sf.net/config_import.html --> |
| 135 | <module name="AvoidStarImport"/> |
Ray Milkey | 3f5ef56 | 2014-03-25 17:11:19 -0700 | [diff] [blame] | 136 | <module name="IllegalImport"/> |
| 137 | <!-- defaults to sun.* packages --> |
Yuta HIGUCHI | f980844 | 2014-03-20 15:56:50 -0700 | [diff] [blame] | 138 | <module name="RedundantImport"/> |
| 139 | <module name="UnusedImports"/> |
| 140 | |
| 141 | |
| 142 | <!-- Checks for Size Violations. --> |
| 143 | <!-- See http://checkstyle.sf.net/config_sizes.html --> |
| 144 | <module name="LineLength"> |
Ray Milkey | 3f5ef56 | 2014-03-25 17:11:19 -0700 | [diff] [blame] | 145 | <!-- ONOS standard usage is 80 columns, but we allow up |
| 146 | to 120 to not break the build. --> |
| 147 | <property name="max" value="120"/> |
Ray Milkey | 098466c | 2014-04-22 11:36:46 -0700 | [diff] [blame] | 148 | <property name="severity" value="warning"/> |
Yuta HIGUCHI | f980844 | 2014-03-20 15:56:50 -0700 | [diff] [blame] | 149 | </module> |
Ray Milkey | b5716c5 | 2014-04-07 11:38:27 -0700 | [diff] [blame] | 150 | <module name="MethodLength"> |
Ray Milkey | 098466c | 2014-04-22 11:36:46 -0700 | [diff] [blame] | 151 | <property name="max" value="200"/> |
| 152 | </module> |
Ray Milkey | b5716c5 | 2014-04-07 11:38:27 -0700 | [diff] [blame] | 153 | |
Ray Milkey | a5450cc | 2014-04-17 14:31:30 -0700 | [diff] [blame] | 154 | <module name="ParameterNumber"/> |
Yuta HIGUCHI | f980844 | 2014-03-20 15:56:50 -0700 | [diff] [blame] | 155 | |
| 156 | <!-- Checks for whitespace --> |
| 157 | <!-- See http://checkstyle.sf.net/config_whitespace.html --> |
Ray Milkey | 7f1567c | 2014-04-08 13:53:32 -0700 | [diff] [blame] | 158 | <module name="EmptyForIteratorPad"/> |
Yuta HIGUCHI | f980844 | 2014-03-20 15:56:50 -0700 | [diff] [blame] | 159 | <module name="GenericWhitespace"/> |
| 160 | <module name="MethodParamPad"/> |
Ray Milkey | 7f1567c | 2014-04-08 13:53:32 -0700 | [diff] [blame] | 161 | <module name="NoWhitespaceAfter"/> |
| 162 | <module name="NoWhitespaceBefore"/> |
Ray Milkey | b5716c5 | 2014-04-07 11:38:27 -0700 | [diff] [blame] | 163 | |
Ray Milkey | 3f5ef56 | 2014-03-25 17:11:19 -0700 | [diff] [blame] | 164 | <!-- Disabled for ONOS. Default rules specify undesired behavior for the '?' operator --> |
Yuta HIGUCHI | f980844 | 2014-03-20 15:56:50 -0700 | [diff] [blame] | 165 | <!-- <module name="OperatorWrap"/> --> |
| 166 | <module name="ParenPad"/> |
| 167 | <module name="TypecastParenPad"/> |
Ray Milkey | 7f1567c | 2014-04-08 13:53:32 -0700 | [diff] [blame] | 168 | <module name="WhitespaceAfter"/> |
| 169 | <module name="WhitespaceAround"/> |
Ray Milkey | b5716c5 | 2014-04-07 11:38:27 -0700 | [diff] [blame] | 170 | |
Yuta HIGUCHI | f980844 | 2014-03-20 15:56:50 -0700 | [diff] [blame] | 171 | |
| 172 | |
| 173 | <!-- Modifier Checks --> |
| 174 | <!-- See http://checkstyle.sf.net/config_modifiers.html --> |
Ray Milkey | ec83894 | 2014-04-09 11:28:43 -0700 | [diff] [blame] | 175 | <module name="ModifierOrder"/> |
Ray Milkey | b5716c5 | 2014-04-07 11:38:27 -0700 | [diff] [blame] | 176 | |
Ray Milkey | 3f5ef56 | 2014-03-25 17:11:19 -0700 | [diff] [blame] | 177 | <!-- Disabled for ONOS to allow use of public --> |
| 178 | <!-- modifiers in interfaces. --> |
| 179 | <!-- <module name="RedundantModifier"/> --> |
Yuta HIGUCHI | f980844 | 2014-03-20 15:56:50 -0700 | [diff] [blame] | 180 | |
| 181 | |
| 182 | <!-- Checks for blocks. You know, those {}'s --> |
| 183 | <!-- See http://checkstyle.sf.net/config_blocks.html --> |
| 184 | <module name="AvoidNestedBlocks"> |
Ray Milkey | 3f5ef56 | 2014-03-25 17:11:19 -0700 | [diff] [blame] | 185 | <!-- ONOS alows declarations inside of switch case blocks --> |
Yuta HIGUCHI | f980844 | 2014-03-20 15:56:50 -0700 | [diff] [blame] | 186 | <property name="allowInSwitchCase" value="true"/> |
Yuta HIGUCHI | f980844 | 2014-03-20 15:56:50 -0700 | [diff] [blame] | 187 | </module> |
Ray Milkey | 1aa71f8 | 2014-04-08 16:23:24 -0700 | [diff] [blame] | 188 | <module name="EmptyBlock"/> |
Ray Milkey | b5716c5 | 2014-04-07 11:38:27 -0700 | [diff] [blame] | 189 | <module name="LeftCurly"/> |
Ray Milkey | b29e626 | 2014-04-09 16:02:14 -0700 | [diff] [blame] | 190 | <module name="NeedBraces"/> |
Ray Milkey | b5716c5 | 2014-04-07 11:38:27 -0700 | [diff] [blame] | 191 | <module name="RightCurly"/> |
Yuta HIGUCHI | f980844 | 2014-03-20 15:56:50 -0700 | [diff] [blame] | 192 | |
| 193 | <!-- Checks for common coding problems --> |
| 194 | <!-- See http://checkstyle.sf.net/config_coding.html --> |
Ray Milkey | 3f5ef56 | 2014-03-25 17:11:19 -0700 | [diff] [blame] | 195 | <!-- ONOS allows conditional operators --> |
Yuta HIGUCHI | f980844 | 2014-03-20 15:56:50 -0700 | [diff] [blame] | 196 | <!-- <module name="AvoidInlineConditionals"/> --> |
Ray Milkey | 043daa2 | 2014-04-08 14:13:16 -0700 | [diff] [blame] | 197 | <module name="EmptyStatement"/> |
Yuta HIGUCHI | f980844 | 2014-03-20 15:56:50 -0700 | [diff] [blame] | 198 | <module name="EqualsHashCode"/> |
Ray Milkey | b5716c5 | 2014-04-07 11:38:27 -0700 | [diff] [blame] | 199 | |
| 200 | <module name="HiddenField"> |
Ray Milkey | 098466c | 2014-04-22 11:36:46 -0700 | [diff] [blame] | 201 | <property name="ignoreSetter" value="true"/> |
| 202 | <property name="ignoreConstructorParameter" value="true"/> |
Ray Milkey | b5716c5 | 2014-04-07 11:38:27 -0700 | [diff] [blame] | 203 | </module> |
| 204 | |
Yuta HIGUCHI | f980844 | 2014-03-20 15:56:50 -0700 | [diff] [blame] | 205 | <module name="IllegalInstantiation"/> |
Ray Milkey | b6e0ac8 | 2014-04-09 13:21:42 -0700 | [diff] [blame] | 206 | <module name="InnerAssignment"/> |
Ray Milkey | b5716c5 | 2014-04-07 11:38:27 -0700 | [diff] [blame] | 207 | |
Ray Milkey | 3f5ef56 | 2014-03-25 17:11:19 -0700 | [diff] [blame] | 208 | <!-- Many violations of this rule present, revist in a |
| 209 | subsequent round of cleanups --> |
Yuta HIGUCHI | f980844 | 2014-03-20 15:56:50 -0700 | [diff] [blame] | 210 | <!-- <module name="MagicNumber"/> --> |
Ray Milkey | 0b122ed | 2014-04-14 10:06:03 -0700 | [diff] [blame] | 211 | <module name="MissingSwitchDefault"/> |
Ray Milkey | b5716c5 | 2014-04-07 11:38:27 -0700 | [diff] [blame] | 212 | |
| 213 | <module name="RedundantThrows"> |
Ray Milkey | 098466c | 2014-04-22 11:36:46 -0700 | [diff] [blame] | 214 | <property name="allowSubclasses" value="true"/> |
| 215 | </module> |
Ray Milkey | b5716c5 | 2014-04-07 11:38:27 -0700 | [diff] [blame] | 216 | |
Ray Milkey | 6c4f2fe | 2014-04-11 09:47:23 -0700 | [diff] [blame] | 217 | <module name="SimplifyBooleanExpression"/> |
Ray Milkey | 4985f21 | 2014-04-10 16:57:05 -0700 | [diff] [blame] | 218 | <module name="SimplifyBooleanReturn"/> |
Yuta HIGUCHI | f980844 | 2014-03-20 15:56:50 -0700 | [diff] [blame] | 219 | |
| 220 | <!-- Checks for class design --> |
| 221 | <!-- See http://checkstyle.sf.net/config_design.html --> |
Ray Milkey | 3f5ef56 | 2014-03-25 17:11:19 -0700 | [diff] [blame] | 222 | <!-- ONOS produces many warnings of this type. |
| 223 | Fixing all of these is outside the scope of the current cleanup. --> |
Yuta HIGUCHI | f980844 | 2014-03-20 15:56:50 -0700 | [diff] [blame] | 224 | <!-- <module name="DesignForExtension"/> --> |
Ray Milkey | 1584ec8 | 2014-04-10 11:58:30 -0700 | [diff] [blame] | 225 | <module name="FinalClass"/> |
Ray Milkey | b5716c5 | 2014-04-07 11:38:27 -0700 | [diff] [blame] | 226 | |
Ray Milkey | a2e2146 | 2014-04-10 13:21:44 -0700 | [diff] [blame] | 227 | <module name="HideUtilityClassConstructor"/> |
Ray Milkey | b5716c5 | 2014-04-07 11:38:27 -0700 | [diff] [blame] | 228 | |
Yuta HIGUCHI | f980844 | 2014-03-20 15:56:50 -0700 | [diff] [blame] | 229 | <module name="InterfaceIsType"/> |
Ray Milkey | b5716c5 | 2014-04-07 11:38:27 -0700 | [diff] [blame] | 230 | |
| 231 | <module name="VisibilityModifier"> |
Ray Milkey | 098466c | 2014-04-22 11:36:46 -0700 | [diff] [blame] | 232 | <property name="severity" value="warning"/> |
Ray Milkey | b5716c5 | 2014-04-07 11:38:27 -0700 | [diff] [blame] | 233 | </module> |
| 234 | |
Yuta HIGUCHI | f980844 | 2014-03-20 15:56:50 -0700 | [diff] [blame] | 235 | |
| 236 | |
| 237 | <!-- Miscellaneous other checks. --> |
| 238 | <!-- See http://checkstyle.sf.net/config_misc.html --> |
Ray Milkey | 45614c5 | 2014-04-07 16:30:54 -0700 | [diff] [blame] | 239 | <module name="ArrayTypeStyle"/> |
Ray Milkey | b5716c5 | 2014-04-07 11:38:27 -0700 | [diff] [blame] | 240 | |
Ray Milkey | 3f5ef56 | 2014-03-25 17:11:19 -0700 | [diff] [blame] | 241 | <!-- Many violations of this rule currently, too many to fix |
| 242 | in the current cleanup. --> |
Yuta HIGUCHI | f980844 | 2014-03-20 15:56:50 -0700 | [diff] [blame] | 243 | <!-- <module name="FinalParameters"/> --> |
Ray Milkey | 3f5ef56 | 2014-03-25 17:11:19 -0700 | [diff] [blame] | 244 | <!-- ONOS allows TODO markers in checked in source code --> |
Yuta HIGUCHI | f980844 | 2014-03-20 15:56:50 -0700 | [diff] [blame] | 245 | <!-- <module name="TodoComment"/> --> |
| 246 | <module name="UpperEll"/> |
| 247 | |
Ray Milkey | b5716c5 | 2014-04-07 11:38:27 -0700 | [diff] [blame] | 248 | </module> |
Yuta HIGUCHI | f980844 | 2014-03-20 15:56:50 -0700 | [diff] [blame] | 249 | |
Ray Milkey | b5716c5 | 2014-04-07 11:38:27 -0700 | [diff] [blame] | 250 | </module> |