This repository has been archived by the owner on Jul 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8461319
commit c0a17a8
Showing
15 changed files
with
187 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,131 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE module PUBLIC "-//Checkstyle//DTD Check Configuration 1.3//EN" "https://checkstyle.org/dtds/configuration_1_3.dtd"> | ||
|
||
<!-- | ||
This configuration file was written by the eclipse-cs plugin configuration editor | ||
--> | ||
<!-- | ||
Checkstyle-Configuration: Mixin | ||
Description: none | ||
--> | ||
<module name="Checker"> | ||
<property name="severity" value="error"/> | ||
<property name="charset" value="UTF-8"/> | ||
<module name="BeforeExecutionExclusionFileFilter"> | ||
<property name="fileNamePattern" value="module\-info\.java$"/> | ||
</module> | ||
<module name="TreeWalker"> | ||
<module name="OuterTypeFilename"/> | ||
<module name="IllegalTokenText"> | ||
<property name="tokens" value="STRING_LITERAL, CHAR_LITERAL"/> | ||
<property name="format" value="\\u00(08|09|0(a|A)|0(c|C)|0(d|D)|22|27|5(C|c))|\\(0(10|11|12|14|15|42|47)|134)"/> | ||
<property name="message" value="Avoid using corresponding octal or Unicode escape."/> | ||
</module> | ||
<module name="EmptyBlock"> | ||
<property name="option" value="TEXT"/> | ||
<property name="tokens" value="LITERAL_TRY, LITERAL_CATCH, LITERAL_FINALLY, LITERAL_IF, LITERAL_ELSE, LITERAL_SWITCH"/> | ||
</module> | ||
<module name="NeedBraces"/> | ||
<module name="LeftCurly"/> | ||
<module name="RightCurly"/> | ||
<module name="RightCurly"> | ||
<property name="option" value="alone"/> | ||
<property name="tokens" value="CLASS_DEF,METHOD_DEF,LITERAL_FOR,LITERAL_WHILE,STATIC_INIT,INSTANCE_INIT"/> | ||
</module> | ||
<module name="RightCurly"> | ||
<property name="option" value="alone_or_singleline"/> | ||
<property name="tokens" value="CTOR_DEF"/> | ||
</module> | ||
<module name="WhitespaceAround"> | ||
<property name="allowEmptyConstructors" value="true"/> | ||
<property name="allowEmptyMethods" value="true"/> | ||
<message key="ws.notPreceded" value="WhitespaceAround: ''{0}'' is not preceded with whitespace."/> | ||
<message key="ws.notFollowed" value="WhitespaceAround: ''{0}'' is not followed by whitespace."/> | ||
</module> | ||
<module name="OneStatementPerLine"/> | ||
<module name="ArrayTypeStyle"/> | ||
<module name="FallThrough"/> | ||
<module name="UpperEll"/> | ||
<module name="ModifierOrder"/> | ||
<module name="PackageName"> | ||
<property name="format" value="^[a-z]+(\.[a-z][a-z0-9]*)*$"/> | ||
<message key="name.invalidPattern" value="Package name ''{0}'' must match pattern ''{1}''."/> | ||
</module> | ||
<module name="TypeName"> | ||
<message key="name.invalidPattern" value="Type name ''{0}'' must match pattern ''{1}''."/> | ||
</module> | ||
<module name="MemberName"> | ||
<property name="format" value="^[a-z](([a-z0-9])|([a-z0-9][a-zA-Z0-9]*))?$"/> | ||
<message key="name.invalidPattern" value="Member name ''{0}'' must match pattern ''{1}''."/> | ||
</module> | ||
<module name="ParameterName"> | ||
<property name="format" value="^[a-z](([a-z0-9])|([a-z0-9][a-zA-Z0-9]*))?$"/> | ||
<message key="name.invalidPattern" value="Parameter name ''{0}'' must match pattern ''{1}''."/> | ||
</module> | ||
<module name="LocalVariableName"> | ||
<property name="format" value="^[a-z](([a-z0-9])|([a-z0-9][a-zA-Z0-9]*))?$"/> | ||
<message key="name.invalidPattern" value="Local variable name ''{0}'' must match pattern ''{1}''."/> | ||
</module> | ||
<module name="ClassTypeParameterName"> | ||
<property name="format" value="^([A-Z][0-9]?)|([T][A-Z][a-zA-Z0-9]*)$"/> | ||
<message key="name.invalidPattern" value="Class type name ''{0}'' must match pattern ''{1}''."/> | ||
</module> | ||
<module name="MethodTypeParameterName"> | ||
<property name="format" value="^([A-Z][0-9]?)|([T][A-Z][a-zA-Z0-9]*)$"/> | ||
<message key="name.invalidPattern" value="Method type name ''{0}'' must match pattern ''{1}''."/> | ||
</module> | ||
<module name="NoFinalizer"/> | ||
<module name="GenericWhitespace"> | ||
<message key="ws.notPreceded" value="GenericWhitespace ''{0}'' is not preceded with whitespace."/> | ||
<message key="ws.followed" value="GenericWhitespace ''{0}'' is followed by whitespace."/> | ||
<message key="ws.preceded" value="GenericWhitespace ''{0}'' is preceded with whitespace."/> | ||
<message key="ws.illegalFollow" value="GenericWhitespace ''{0}'' should followed by whitespace."/> | ||
</module> | ||
<module name="MethodParamPad"/> | ||
<module name="OperatorWrap"> | ||
<property name="option" value="NL"/> | ||
<property name="tokens" value="BAND, BOR, BSR, BXOR, DIV, EQUAL, GE, GT, LAND, LE, LITERAL_INSTANCEOF, LOR, LT, MINUS, MOD, NOT_EQUAL, PLUS, QUESTION, SL, SR, STAR "/> | ||
</module> | ||
<module name="RequireThis"/> | ||
<module name="JavadocType"> | ||
<property name="scope" value="package"/> | ||
</module> | ||
<module name="JavadocMethod"> | ||
<metadata name="net.sf.eclipsecs.core.comment" value="Package members"/> | ||
<property name="accessModifiers" value="package"/> | ||
<property name="allowMissingParamTags" value="true"/> | ||
<property name="allowMissingReturnTag" value="true"/> | ||
<property name="tokens" value="METHOD_DEF"/> | ||
</module> | ||
<module name="JavadocTagContinuationIndentation"> | ||
<property name="offset" value="5"/> | ||
</module> | ||
<module name="JavadocMethod"> | ||
<metadata name="net.sf.eclipsecs.core.comment" value="Public members"/> | ||
<property name="accessModifiers" value="public"/> | ||
<property name="allowMissingReturnTag" value="true"/> | ||
<property name="tokens" value="METHOD_DEF"/> | ||
</module> | ||
<module name="NonEmptyAtclauseDescription"/> | ||
<module name="AtclauseOrder"/> | ||
<module name="JavadocParagraph"/> | ||
<module name="JavadocStyle"> | ||
<property name="scope" value="public"/> | ||
<property name="checkFirstSentence" value="false"/> | ||
</module> | ||
<module name="FinalClass"/> | ||
<module name="TypecastParenPad"/> | ||
<module name="ConstantName"> | ||
<property name="applyToProtected" value="false"/> | ||
<property name="applyToPackage" value="false"/> | ||
<property name="applyToPrivate" value="false"/> | ||
</module> | ||
<module name="MethodName"/> | ||
<module name="UncommentedMain"/> | ||
<module name="SuppressionCommentFilter"/> | ||
</module> | ||
<module name="SuppressWithPlainTextCommentFilter"> | ||
<property name="offCommentFormat" value="\*.*<pre>"/> | ||
<property name="onCommentFormat" value="\*.*</pre>"/> | ||
</module> | ||
</module> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters