Pull #3263: corrected alphabetical order of the checks (#3263)

Pull #3263: corrected case-insensitive alphabetical order of the checks
This commit is contained in:
Claus Schrammel 2016-06-12 15:08:58 +02:00 committed by Roman Ivanov
parent d4d185f581
commit bca44e516e
1 changed files with 36 additions and 36 deletions

View File

@ -113,14 +113,14 @@
specified by the format property.
</td>
</tr>
<tr>
<td><a href="config_naming.html#ConstantName">ConstantName</a></td>
<td>Checks that constant names conform to a format specified by the format property.</td>
</tr>
<tr>
<td><a href="config_misc.html#CommentsIndentation">CommentsIndentation</a></td>
<td>Controls the indentation between comments and surrounding code.</td>
</tr>
<tr>
<td><a href="config_naming.html#ConstantName">ConstantName</a></td>
<td>Checks that constant names conform to a format specified by the format property.</td>
</tr>
<tr>
<td><a href="config_coding.html#CovariantEquals">CovariantEquals</a></td>
<td>
@ -340,11 +340,6 @@
Checks that interface type parameter names conform to a format specified
by the format property.</td>
</tr>
<tr>
<td><a href="config_metrics.html#JavaNCSS">JavaNCSS</a></td>
<td>This check calculates the Non Commenting Source Statements (NCSS) metric for
Java source files and methods.</td>
</tr>
<tr>
<td><a href="config_javadoc.html#JavadocMethod">JavadocMethod</a></td>
<td>Checks the Javadoc of a method or constructor.</td>
@ -353,10 +348,6 @@
<td><a href="config_javadoc.html#JavadocPackage">JavadocPackage</a></td>
<td>Checks that all packages have a package documentation.</td>
</tr>
<tr>
<td><a href="config_javadoc.html#JavadocTagContinuationIndentation">JavadocTagContinuationIndentation</a></td>
<td>Checks the indentation of the continuation lines in at-clauses.</td>
</tr>
<tr>
<td><a href="config_javadoc.html#JavadocParagraph">JavadocParagraph</a></td>
<td>Checks Javadoc paragraphs.</td>
@ -365,6 +356,10 @@
<td><a href="config_javadoc.html#JavadocStyle">JavadocStyle</a></td>
<td>Custom Checkstyle Check to validate Javadoc.</td>
</tr>
<tr>
<td><a href="config_javadoc.html#JavadocTagContinuationIndentation">JavadocTagContinuationIndentation</a></td>
<td>Checks the indentation of the continuation lines in at-clauses.</td>
</tr>
<tr>
<td><a href="config_javadoc.html#JavadocType">JavadocType</a></td>
<td>Checks the Javadoc of a type.</td>
@ -373,6 +368,11 @@
<td><a href="config_javadoc.html#JavadocVariable">JavadocVariable</a></td>
<td>Checks that a variable has Javadoc comment.</td>
</tr>
<tr>
<td><a href="config_metrics.html#JavaNCSS">JavaNCSS</a></td>
<td>This check calculates the Non Commenting Source Statements (NCSS) metric for
Java source files and methods.</td>
</tr>
<tr>
<td><a href="config_blocks.html#LeftCurly">LeftCurly</a></td>
<td>
@ -489,10 +489,6 @@
<td> Ensures that exceptions (defined as any class name conforming
to some regular expression) are immutable.</td>
</tr>
<tr>
<td><a href="config_metrics.html#NPathComplexity">NPathComplexity</a></td>
<td>Checks the npath complexity against a specified limit (default = 200).</td>
</tr>
<tr>
<td><a href="config_blocks.html#NeedBraces">NeedBraces</a></td>
<td>
@ -526,16 +522,16 @@
<td>Checks that no method having zero parameters is defined
using the name <em>finalize</em>.</td>
</tr>
<tr>
<td><a href="config_javadoc.html#NonEmptyAtclauseDescription">NonEmptyAtclauseDescription</a></td>
<td>
Checks that the at-clause tag is followed by description .</td>
</tr>
<tr>
<td><a href="config_whitespace.html#NoLineWrap">NoLineWrap</a></td>
<td>
Checks that chosen statements are not line-wrapped.</td>
</tr>
<tr>
<td><a href="config_javadoc.html#NonEmptyAtclauseDescription">NonEmptyAtclauseDescription</a></td>
<td>
Checks that the at-clause tag is followed by description .</td>
</tr>
<tr>
<td><a href="config_whitespace.html#NoWhitespaceAfter">NoWhitespaceAfter</a></td>
<td>
@ -546,6 +542,10 @@
<td>
Checks that there is no whitespace before a token.</td>
</tr>
<tr>
<td><a href="config_metrics.html#NPathComplexity">NPathComplexity</a></td>
<td>Checks the npath complexity against a specified limit (default = 200).</td>
</tr>
<tr>
<td><a href="config_coding.html#OneStatementPerLine">OneStatementPerLine</a></td>
<td>Checks that there is only one statement per line.</td>
@ -668,16 +668,6 @@
<td>
Checks line wrapping with separators.</td>
</tr>
<tr>
<td><a href="config_javadoc.html#SingleLineJavadoc">SingleLineJavadoc</a></td>
<td>
Checks that a JavaDoc block which can fit on a single line and doesn't contain at-clauses</td>
</tr>
<tr>
<td><a href="config_whitespace.html#SingleSpaceSeparator">SingleSpaceSeparator</a></td>
<td>
Checks that non-whitespace characters are separated by no more than one whitespace.</td>
</tr>
<tr>
<td><a href="config_coding.html#SimplifyBooleanExpression">SimplifyBooleanExpression</a></td>
<td>
@ -688,6 +678,16 @@
<td>
Checks for overly complicated boolean return statements.</td>
</tr>
<tr>
<td><a href="config_javadoc.html#SingleLineJavadoc">SingleLineJavadoc</a></td>
<td>
Checks that a JavaDoc block which can fit on a single line and doesn't contain at-clauses</td>
</tr>
<tr>
<td><a href="config_whitespace.html#SingleSpaceSeparator">SingleSpaceSeparator</a></td>
<td>
Checks that non-whitespace characters are separated by no more than one whitespace.</td>
</tr>
<tr>
<td><a href="config_naming.html#StaticVariableName">StaticVariableName</a></td>
<td>
@ -747,16 +747,16 @@
The TranslationCheck class helps to ensure the correct translation of code by
checking property files for consistency regarding their keys.</td>
</tr>
<tr>
<td><a href="config_whitespace.html#TypecastParenPad">TypecastParenPad</a></td>
<td>Checks the padding of parentheses for typecasts.</td>
</tr>
<tr>
<td><a href="config_naming.html#TypeName">TypeName</a></td>
<td>
Checks that type names conform to a format specified
by the format property.</td>
</tr>
<tr>
<td><a href="config_whitespace.html#TypecastParenPad">TypecastParenPad</a></td>
<td>Checks the padding of parentheses for typecasts.</td>
</tr>
<tr>
<td><a href="config_misc.html#UncommentedMain">UncommentedMain</a></td>
<td>Detects uncommented main methods.</td>