-
-
Notifications
You must be signed in to change notification settings - Fork 9
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
Showing
39 changed files
with
354 additions
and
115 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
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
plugins { | ||
id 'java' | ||
id 'maven-publish' | ||
id 'checkstyle' | ||
id 'org.quiltmc.gradle.licenser' version '1.+' | ||
} | ||
|
||
|
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,167 @@ | ||
<?xml version="1.0"?> | ||
<!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.2//EN" "http://www.puppycrawl.com/dtds/configuration_1_2.dtd"> | ||
<module name="Checker"> | ||
<property name="charset" value="UTF-8"/> | ||
<property name="fileExtensions" value="java"/> | ||
<property name="localeLanguage" value="en"/> | ||
<property name="localeCountry" value="US"/> | ||
<property name="tabWidth" value="4"/> | ||
|
||
<module name="NewlineAtEndOfFile"/> | ||
|
||
<!-- disallow trailing whitespace --> | ||
<module name="RegexpSingleline"> | ||
<property name="format" value="\s+$"/> | ||
<property name="message" value="trailing whitespace"/> | ||
</module> | ||
|
||
<!-- note: RegexpMultiline shows nicer messages than Regexp, but has to be outside TreeWalker --> | ||
<!-- disallow multiple consecutive blank lines --> | ||
<module name="RegexpMultiline"> | ||
<property name="format" value="\n[\t ]*\r?\n[\t ]*\r?\n"/> | ||
<property name="message" value="adjacent blank lines"/> | ||
</module> | ||
|
||
<!-- disallow blank after { --> | ||
<module name="RegexpMultiline"> | ||
<property name="format" value="\{[\t ]*\r?\n[\t ]*\r?\n"/> | ||
<property name="message" value="blank line after '{'"/> | ||
</module> | ||
|
||
<!-- disallow blank before } --> | ||
<module name="RegexpMultiline"> | ||
<property name="format" value="\n[\t ]*\r?\n[\t ]*\}"/> | ||
<property name="message" value="blank line before '}'"/> | ||
</module> | ||
|
||
<!-- require blank after } in the same indentation level --> | ||
<module name="RegexpMultiline"> | ||
<!-- \n<indentation>}\n<same indentation><whatever unless newline, '}' or starting with cas(e) or def(ault)> --> | ||
<property name="format" value="(?<=\n)([\t]+)\}\r?\n\1(?:[^\r\n\}cd]|c[^\r\na]|ca[^\r\ns]|d[^\r\ne]|de[^\r\nf])"/> | ||
<property name="message" value="missing blank line after block at same indentation level"/> | ||
</module> | ||
|
||
<module name="TreeWalker"> | ||
<!-- Allow "//CHECKSTYLE.OFF: <InspectionName>" and "//CHECKSTYLE.ON: <InspectionName>" pairs to toggle some inspections --> | ||
<module name="SuppressionCommentFilter"> | ||
<property name="offCommentFormat" value="CHECKSTYLE.OFF\: ([\w\|]+)"/> | ||
<property name="onCommentFormat" value="CHECKSTYLE.ON\: ([\w\|]+)"/> | ||
<property name="checkFormat" value="$1"/> | ||
</module> | ||
|
||
<!-- Ensure all imports are ship shape --> | ||
<module name="AvoidStarImport"> | ||
<property name="excludes" value="org.hamcrest.Matchers"/> | ||
</module> | ||
<module name="IllegalImport"/> | ||
<module name="RedundantImport"/> | ||
<module name="UnusedImports"/> | ||
|
||
<module name="ImportOrder"> | ||
<property name="groups" value="*,/java|javax/"/> | ||
<property name="ordered" value="false"/><!-- the plugin orders alphabetically without considering separators.. --> | ||
<property name="separated" value="true"/> | ||
<property name="option" value="bottom"/> | ||
<property name="sortStaticImportsAlphabetically" value="true"/> | ||
</module> | ||
|
||
<!-- Ensures braces are at the end of a line --> | ||
<module name="LeftCurly"/> | ||
<module name="RightCurly"/> | ||
|
||
<!-- single line statements on one line, --> | ||
<module name="NeedBraces"> | ||
<property name="tokens" value="LITERAL_IF,LITERAL_FOR,LITERAL_WHILE"/> | ||
<property name="allowSingleLineStatement" value="true"/> | ||
</module> | ||
<module name="NeedBraces"> | ||
<property name="tokens" value="LITERAL_ELSE,LITERAL_DO"/> | ||
<property name="allowSingleLineStatement" value="false"/> | ||
</module> | ||
|
||
<module name="EmptyLineSeparator"> | ||
<property name="allowNoEmptyLineBetweenFields" value="true"/> | ||
<property name="allowMultipleEmptyLines" value="false"/> | ||
<!-- exclude METHOD_DEF and VARIABLE_DEF --> | ||
<property name="tokens" value="PACKAGE_DEF,IMPORT,STATIC_IMPORT,CLASS_DEF,INTERFACE_DEF,ENUM_DEF,STATIC_INIT,INSTANCE_INIT,CTOR_DEF"/> | ||
</module> | ||
|
||
<module name="OperatorWrap"/> | ||
<module name="SeparatorWrap"> | ||
<property name="tokens" value="DOT,ELLIPSIS,AT"/> | ||
<property name="option" value="nl"/> | ||
</module> | ||
<module name="SeparatorWrap"> | ||
<property name="tokens" value="COMMA,SEMI"/> | ||
<property name="option" value="eol"/> | ||
</module> | ||
|
||
<module name="Indentation"> | ||
<property name="basicOffset" value="4"/> | ||
<property name="caseIndent" value="4"/> | ||
<property name="throwsIndent" value="4"/> | ||
<property name="arrayInitIndent" value="4"/> | ||
<property name="lineWrappingIndentation" value="8"/> | ||
</module> | ||
|
||
<module name="ParenPad"/> | ||
<module name="NoWhitespaceBefore"/> | ||
<module name="NoWhitespaceAfter"> | ||
<!-- allow ARRAY_INIT --> | ||
<property name="tokens" value="AT,INC,DEC,UNARY_MINUS,UNARY_PLUS,BNOT,LNOT,DOT,ARRAY_DECLARATOR,INDEX_OP"/> | ||
</module> | ||
<module name="WhitespaceAfter"/> | ||
<module name="WhitespaceAround"> | ||
<!-- Allow PLUS, MINUS, MUL, DIV as they may be more readable without spaces in some cases --> | ||
<property name="tokens" value="ASSIGN,BAND,BAND_ASSIGN,BOR,BOR_ASSIGN,BSR,BSR_ASSIGN,BXOR,BXOR_ASSIGN,COLON,DIV_ASSIGN,DO_WHILE,EQUAL,GE,GT,LAMBDA,LAND,LCURLY,LE,LITERAL_CATCH,LITERAL_DO,LITERAL_ELSE,LITERAL_FINALLY,LITERAL_FOR,LITERAL_IF,LITERAL_RETURN,LITERAL_SWITCH,LITERAL_SYNCHRONIZED,LITERAL_TRY,LITERAL_WHILE,LOR,LT,MINUS_ASSIGN,MOD,MOD_ASSIGN,NOT_EQUAL,PLUS_ASSIGN,QUESTION,RCURLY,SL,SLIST,SL_ASSIGN,SR,SR_ASSIGN,STAR,STAR_ASSIGN,LITERAL_ASSERT,TYPE_EXTENSION_AND"/> | ||
|
||
<property name="allowEmptyConstructors" value="true" /> | ||
<property name="allowEmptyMethods" value="true" /> | ||
<property name="allowEmptyTypes" value="true" /> | ||
<property name="allowEmptyLoops" value="true" /> | ||
<property name="allowEmptyLambdas" value="true" /> | ||
</module> | ||
<module name="SingleSpaceSeparator"/> | ||
<module name="GenericWhitespace"/> | ||
<module name="CommentsIndentation"/> | ||
|
||
<module name="ArrayTypeStyle"/> | ||
<module name="DefaultComesLast"> | ||
<property name="skipIfLastAndSharedWithCase" value="true"/> | ||
</module> | ||
<module name="SimplifyBooleanExpression"/> | ||
<module name="SimplifyBooleanReturn"/> | ||
<module name="StringLiteralEquality"/> | ||
|
||
<module name="ModifierOrder"/> | ||
<module name="RedundantModifier"/> | ||
|
||
<module name="AnnotationLocation"/> | ||
<module name="MissingOverride"/> | ||
|
||
<!-- By default this allows catch blocks with only comments --> | ||
<module name="EmptyCatchBlock"/> | ||
|
||
<!-- Require the use of the "this" keyword --> | ||
<module name="RequireThis"> | ||
<property name="validateOnlyOverlapping" value="false"/> | ||
</module> | ||
|
||
<!-- Enforce tabs --> | ||
<module name="RegexpSinglelineJava"> | ||
<property name="format" value="^\t* ([^*]|\*[^ /])"/> | ||
<property name="message" value="non-tab indentation"/> | ||
</module> | ||
|
||
<module name="OuterTypeFilename"/> | ||
<module name="PackageDeclaration"/> | ||
|
||
<!--<module name="InvalidJavadocPosition"/>--> | ||
<module name="JavadocParagraph"> | ||
<property name="allowNewlineParagraph" value="false"/> | ||
</module> | ||
<module name="AtclauseOrder"> | ||
<property name="tagOrder" value="@param,@return,@throws,@deprecated"/> | ||
</module> | ||
</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
Oops, something went wrong.