This repository has been archived by the owner on Jul 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
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
17 changed files
with
867 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,284 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<!DOCTYPE module PUBLIC "-//Checkstyle//DTD Checkstyle Configuration 1.3//EN" "https://checkstyle.org/dtds/configuration_1_3.dtd"> | ||
<module name="Checker"> | ||
<property name="charset" value="UTF-8"/> | ||
<property name="fileExtensions" value="java, properties, xml"/> | ||
<property name="severity" value="error"/> | ||
|
||
<!-- https://checkstyle.org/config_filefilters.html#BeforeExecutionExclusionFileFilter --> | ||
<module name="BeforeExecutionExclusionFileFilter"> | ||
<property name="fileNamePattern" value="module\-info\.java$"/> | ||
</module> | ||
|
||
<!-- https://checkstyle.org/config_whitespace.html#FileTabCharacter --> | ||
<module name="FileTabCharacter"> | ||
<property name="eachLine" value="true"/> | ||
</module> | ||
|
||
<!-- <!– https://checkstyle.org/config_javadoc.html#JavadocPackage –>--> | ||
<!-- <module name="JavadocPackage"/>--> | ||
|
||
<!-- https://checkstyle.org/config_misc.html#NewlineAtEndOfFile --> | ||
<module name="NewlineAtEndOfFile"/> | ||
|
||
<!-- https://checkstyle.org/config_filters.html#SuppressWarningsFilter --> | ||
<module name="SuppressWarningsFilter"/> | ||
|
||
<!-- https://checkstyle.org/config_filters.html#SuppressWithPlainTextCommentFilter --> | ||
<module name="SuppressWithPlainTextCommentFilter"> | ||
<property name="offCommentFormat" value="// (@formatter|CHECKSTYLE):(off|OFF)"/> | ||
<property name="onCommentFormat" value="// (@formatter|CHECKSTYLE):(on|ON)"/> | ||
</module> | ||
|
||
<module name="TreeWalker"> | ||
<!-- https://checkstyle.org/config_misc.html#ArrayTypeStyle --> | ||
<module name="ArrayTypeStyle"/> | ||
|
||
<!-- https://checkstyle.org/config_javadoc.html#AtclauseOrder --> | ||
<module name="AtclauseOrder"> | ||
<property name="violateExecutionOnNonTightHtml" value="true"/> | ||
<property name="tagOrder" value="@author, @exception, @param, @return, @serial, @serialData, @serialField, @throws, @see, @since, @sinceMinecraft, @version, @deprecated"/> | ||
</module> | ||
|
||
<!-- https://checkstyle.org/config_imports.html#AvoidStarImport --> | ||
<module name="AvoidStarImport"/> | ||
|
||
<!-- https://checkstyle.org/config_misc.html#AvoidEscapedUnicodeCharacters --> | ||
<module name="AvoidEscapedUnicodeCharacters"> | ||
<property name="allowByTailComment" value="true"/> | ||
<property name="allowEscapesForControlCharacters" value="true"/> | ||
<property name="allowNonPrintableEscapes" value="true"/> | ||
</module> | ||
|
||
<!-- https://checkstyle.org/config_misc.html#CommentsIndentation --> | ||
<module name="CommentsIndentation"/> | ||
|
||
<!-- https://checkstyle.org/config_imports.html#CustomImportOrder --> | ||
<module name="CustomImportOrder"> | ||
<property name="customImportOrderRules" value="THIRD_PARTY_PACKAGE###STATIC"/> | ||
<property name="standardPackageRegExp" value="^$"/> | ||
<property name="sortImportsInGroupAlphabetically" value="true"/> | ||
</module> | ||
|
||
<!-- https://checkstyle.org/config_whitespace.html#EmptyForInitializerPad --> | ||
<module name="EmptyForInitializerPad"/> | ||
|
||
<!-- https://checkstyle.org/config_whitespace.html#EmptyForIteratorPad --> | ||
<module name="EmptyForIteratorPad"/> | ||
|
||
<!-- https://checkstyle.org/config_whitespace.html#EmptyLineSeparator --> | ||
<module name="EmptyLineSeparator"> | ||
<property name="allowMultipleEmptyLines" value="false"/> | ||
<property name="allowMultipleEmptyLinesInsideClassMembers" value="false"/> | ||
<property name="allowNoEmptyLineBetweenFields" value="true"/> | ||
<property name="tokens" value="CLASS_DEF, CTOR_DEF, ENUM_DEF, IMPORT, INSTANCE_INIT, INTERFACE_DEF, METHOD_DEF, STATIC_IMPORT, STATIC_INIT, VARIABLE_DEF"/> <!-- remove PACKAGE_DEF, temporarily remove COMPACT_CTOR_DEF, RECORD_DEF --> | ||
</module> | ||
|
||
<!-- https://checkstyle.org/config_coding.html#FallThrough --> | ||
<module name="FallThrough"> | ||
<property name="checkLastCaseGroup" value="true"/> | ||
</module> | ||
|
||
<!-- https://checkstyle.org/config_design.html#FinalClass --> | ||
<module name="FinalClass"/> | ||
|
||
<!-- https://checkstyle.org/config_coding.html#FinalLocalVariable --> | ||
<module name="FinalLocalVariable"> | ||
<property name="tokens" value="PARAMETER_DEF, VARIABLE_DEF"/> <!-- add PARAMETER_DEF --> | ||
<property name="validateEnhancedForLoopVariable" value="true"/> | ||
</module> | ||
|
||
<!-- https://checkstyle.org/config_whitespace.html#GenericWhitespace --> | ||
<module name="GenericWhitespace"/> | ||
|
||
<!-- https://checkstyle.org/config_design.html#HideUtilityClassConstructor --> | ||
<module name="HideUtilityClassConstructor"/> | ||
|
||
<!-- https://checkstyle.org/config_imports.html#IllegalImport --> | ||
<module name="IllegalImport"> | ||
<property name="illegalPkgs" value="sun, jdk, com.sun"/> | ||
</module> | ||
|
||
<!-- https://checkstyle.org/config_coding.html#IllegalTokenText --> | ||
<module name="IllegalTokenText"> | ||
<property name="format" value="($|[^\\])\\u00(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="Consider using special escape sequence instead of octal value or Unicode escaped value."/> | ||
<property name="tokens" value="CHAR_LITERAL, STRING_LITERAL"/> | ||
</module> | ||
|
||
<!-- https://checkstyle.org/config_misc.html#Indentation --> | ||
<module name="Indentation"> | ||
<property name="arrayInitIndent" value="2"/> | ||
<property name="basicOffset" value="2"/> | ||
<property name="braceAdjustment" value="0"/> | ||
<property name="caseIndent" value="2"/> | ||
<property name="lineWrappingIndentation" value="0"/> | ||
<property name="throwsIndent" value="2"/> | ||
</module> | ||
|
||
<!-- https://checkstyle.org/config_javadoc.html#InvalidJavadocPosition --> | ||
<module name="InvalidJavadocPosition"/> | ||
|
||
<!-- https://checkstyle.org/config_javadoc.html#JavadocContentLocation --> | ||
<module name="JavadocContentLocation"/> | ||
|
||
<!-- https://checkstyle.org/config_javadoc.html#JavadocMethod --> | ||
<module name="JavadocMethod" /> | ||
|
||
<!-- https://checkstyle.org/config_javadoc.html#JavadocMissingWhitespaceAfterAsterisk --> | ||
<module name="JavadocMissingWhitespaceAfterAsterisk"/> | ||
|
||
<!-- https://checkstyle.org/config_javadoc.html#JavadocParagraph --> | ||
<module name="JavadocParagraph"/> | ||
|
||
<!-- https://checkstyle.org/config_javadoc.html#JavadocMissingWhitespaceAfterAsterisk --> | ||
<module name="JavadocTagContinuationIndentation"/> | ||
|
||
<!-- https://checkstyle.org/config_javadoc.html#JavadocType --> | ||
<module name="JavadocType"> | ||
<property name="allowUnknownTags" value="true" /> <!-- @sinceMinecraft is not supported --> | ||
</module> | ||
|
||
<!-- https://checkstyle.org/config_blocks.html#LeftCurly --> | ||
<module name="LeftCurly"/> | ||
|
||
<!-- https://checkstyle.org/config_naming.html#MethodName --> | ||
<module name="MethodName"> | ||
<property name="format" value="^(?:(?:.{1,3})|(?:[gs]et[^A-Z].*)|(?:(?:[^gsA-Z]..|.[^e].|..[^t]).+))$"/> | ||
</module> | ||
|
||
<!-- https://checkstyle.org/config_whitespace.html#MethodParamPad --> | ||
<module name="MethodParamPad"/> | ||
|
||
<!-- <!– https://checkstyle.org/config_javadoc.html#MissingJavadocMethod –>--> | ||
<!-- <module name="MissingJavadocMethod"/>--> | ||
|
||
<!-- <!– https://checkstyle.org/config_javadoc.html#MissingJavadocPackage –>--> | ||
<!-- <module name="MissingJavadocPackage"/>--> | ||
|
||
<!-- <!– https://checkstyle.org/config_javadoc.html#MissingJavadocType –>--> | ||
<!-- <module name="MissingJavadocType"/>--> | ||
|
||
<!-- https://checkstyle.org/config_coding.html#MultipleVariableDeclarations --> | ||
<module name="MultipleVariableDeclarations"/> | ||
|
||
<!-- https://checkstyle.org/config_coding.html#NoFinalizer --> | ||
<module name="NoFinalizer"/> | ||
|
||
<!-- https://checkstyle.org/config_whitespace.html#NoLineWrap --> | ||
<module name="NoLineWrap"/> | ||
|
||
<!-- https://checkstyle.org/config_javadoc.html#NonEmptyAtclauseDescription --> | ||
<module name="NonEmptyAtclauseDescription"/> | ||
|
||
<!-- https://checkstyle.org/config_whitespace.html#NoWhitespaceAfter --> | ||
<module name="NoWhitespaceAfter"> | ||
<property name="allowLineBreaks" value="false"/> | ||
</module> | ||
|
||
<!-- https://checkstyle.org/config_whitespace.html#NoWhitespaceBefore --> | ||
<module name="NoWhitespaceBefore"> | ||
<property name="allowLineBreaks" value="true"/> | ||
<property name="tokens" value="COMMA, DOT, LABELED_STAT, METHOD_REF, POST_DEC, POST_INC, SEMI"/> <!-- remove ELLIPSIS --> | ||
</module> | ||
|
||
<!-- https://checkstyle.org/config_coding.html#OneStatementPerLine --> | ||
<module name="OneStatementPerLine"/> | ||
|
||
<!-- https://checkstyle.org/config_misc.html#OuterTypeFilename --> | ||
<module name="OuterTypeFilename"/> | ||
|
||
<!-- https://checkstyle.org/config_imports.html#RedundantImport --> | ||
<module name="RedundantImport"/> | ||
|
||
<!-- https://checkstyle.org/config_modifier.html#RedundantModifier --> | ||
<module name="RedundantModifier"> | ||
<property name="tokens" value="ANNOTATION_FIELD_DEF, CLASS_DEF, CTOR_DEF, ENUM_DEF, INTERFACE_DEF, VARIABLE_DEF"/> <!-- remove METHOD_DEF and RESOURCE --> | ||
</module> | ||
|
||
<!-- https://checkstyle.org/config_javadoc.html#RequireEmptyLineBeforeBlockTagGroup --> | ||
<module name="RequireEmptyLineBeforeBlockTagGroup"/> | ||
|
||
<!-- https://checkstyle.org/config_coding.html#RequireThis --> | ||
<module name="RequireThis"> | ||
<property name="validateOnlyOverlapping" value="false"/> | ||
</module> | ||
|
||
<!-- https://checkstyle.org/config_blocks.html#RightCurly --> | ||
<module name="RightCurly"> | ||
<property name="id" value="RightCurlyAlone"/> | ||
<property name="option" value="alone"/> | ||
<property name="tokens" value="ANNOTATION_DEF, CLASS_DEF, CTOR_DEF, ENUM_DEF, INSTANCE_INIT, LITERAL_FOR, LITERAL_WHILE, METHOD_DEF, STATIC_INIT"/> | ||
</module> | ||
<module name="RightCurly"> | ||
<property name="id" value="RightCurlySame"/> | ||
<property name="option" value="same"/> | ||
<property name="tokens" value="LITERAL_CATCH, LITERAL_DO, LITERAL_ELSE, LITERAL_FINALLY, LITERAL_IF, LITERAL_TRY"/> <!-- add LITERAL_DO --> | ||
</module> | ||
|
||
<!-- https://checkstyle.org/config_whitespace.html#SeparatorWrap --> | ||
<module name="SeparatorWrap"> | ||
<property name="id" value="SeparatorWrapEol"/> | ||
<property name="option" value="eol"/> | ||
<property name="tokens" value="COMMA, SEMI, ELLIPSIS, RBRACK, ARRAY_DECLARATOR, METHOD_REF"/> | ||
</module> | ||
<module name="SeparatorWrap"> | ||
<property name="id" value="SeparatorWrapNl"/> | ||
<property name="option" value="nl"/> | ||
<property name="tokens" value="DOT, AT"/> | ||
</module> | ||
|
||
<!-- https://checkstyle.org/config_coding.html#SimplifyBooleanExpression --> | ||
<module name="SimplifyBooleanExpression"/> | ||
|
||
<!-- https://checkstyle.org/config_coding.html#SimplifyBooleanReturn --> | ||
<module name="SimplifyBooleanReturn"/> | ||
|
||
<!-- https://checkstyle.org/config_whitespace.html#SingleSpaceSeparator --> | ||
<module name="SingleSpaceSeparator"> | ||
<property name="validateComments" value="true"/> | ||
</module> | ||
|
||
<!-- <!– https://checkstyle.org/config_javadoc.html#SummaryJavadoc –>--> | ||
<!-- <module name="SummaryJavadoc"/>--> | ||
|
||
<!-- https://checkstyle.org/config_annotation.html#SuppressWarningsHolder --> | ||
<module name="SuppressWarningsHolder"/> | ||
|
||
<!-- https://checkstyle.org/config_whitespace.html#TypecastParenPad --> | ||
<module name="TypecastParenPad"/> | ||
|
||
<!-- https://checkstyle.org/config_imports.html#UnusedImports --> | ||
<module name="UnusedImports"/> | ||
|
||
<!-- https://checkstyle.org/config_whitespace.html#WhitespaceAfter --> | ||
<module name="WhitespaceAfter"/> | ||
|
||
<!-- https://checkstyle.org/config_whitespace.html#WhitespaceAround --> | ||
<module name="WhitespaceAround"> | ||
<property name="ignoreEnhancedForColon" value="false"/> | ||
<property name="allowEmptyTypes" value="true"/> | ||
<property name="allowEmptyLambdas" value="true"/> | ||
<property name="tokens" value="ASSIGN, COLON, BAND, BAND_ASSIGN, BOR, BOR_ASSIGN, BSR, BSR_ASSIGN, BXOR, BXOR_ASSIGN, COLON, DIV, DIV_ASSIGN, EQUAL, GE, GT, LAND, LCURLY, LE, LOR, LT, MINUS, MINUS_ASSIGN, MOD, MOD_ASSIGN, NOT_EQUAL, PLUS, PLUS_ASSIGN, QUESTION, RCURLY, SL, SLIST, SL_ASSIGN, SR, SR_ASSIGN, STAR, STAR_ASSIGN, LITERAL_ASSERT, TYPE_EXTENSION_AND"/> | ||
</module> | ||
|
||
<!-- | ||
##################### | ||
#### third-party #### | ||
##################### | ||
--> | ||
|
||
<!-- https://gitlab.com/stellardrift/stylecheck/-/blob/trunk/src/main/java/ca/stellardrift/stylecheck/AnnotationsCloseToType.java --> | ||
<module name="AnnotationsCloseToType"/> | ||
|
||
<!-- <!– https://checkstyle.org/config_javadoc.html#WriteTag –>--> | ||
<!-- <!– https://gitlab.com/stellardrift/stylecheck/-/blob/trunk/src/main/java/ca/stellardrift/stylecheck/FilteringWriteTag.java –>--> | ||
<!-- <module name="FilteringWriteTag">--> | ||
<!-- <property name="tag" value="@since\s"/>--> | ||
<!-- <property name="tagFormat" value="\d\.\d+\.\d+"/>--> | ||
<!-- <property name="tagSeverity" value="ignore"/>--> | ||
<!-- <property name="minimumScope" value="public"/>--> | ||
<!-- <property name="tokens" value="INTERFACE_DEF, CLASS_DEF, ENUM_DEF, ANNOTATION_DEF, RECORD_DEF, METHOD_DEF, CTOR_DEF, ANNOTATION_FIELD_DEF, RECORD_DEF, COMPACT_CTOR_DEF"/>--> | ||
<!-- </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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
indent_size = 2 | ||
indent_style = space | ||
max_line_length = 200 | ||
|
||
ij_continuation_indent_size = 4 | ||
ij_java_class_count_to_use_import_on_demand = 999999 | ||
ij_java_insert_inner_class_imports = false | ||
ij_java_names_count_to_use_import_on_demand = 999999 | ||
ij_java_generate_final_locals = true | ||
ij_java_generate_final_parameters = true |
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,9 @@ | ||
# | ||
# https://help.github.com/articles/dealing-with-line-endings/ | ||
# | ||
# Linux start script should use lf | ||
/gradlew text eol=lf | ||
|
||
# These are Windows script files and should use crlf | ||
*.bat text eol=crlf | ||
|
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,36 @@ | ||
name: build | ||
on: | ||
push: | ||
# Execute this job if the action is a 'push' onto current branch | ||
branches: | ||
- main | ||
pull_request: | ||
# Execute this job if the action is a 'pull_request'. | ||
branches: | ||
- main | ||
jobs: | ||
build: | ||
# We want to run this job on latest ubuntu release. | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
java_version: [ 17 ] | ||
|
||
# Steps to fire on this job. | ||
steps: | ||
- name: checkout-repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: java-setup | ||
uses: actions/setup-java@v3 | ||
with: | ||
# Use the release set on the matrix. | ||
java-version: ${{ matrix.java_version }} | ||
|
||
# Use the Azul-Zulu JDK distribution. | ||
distribution: zulu | ||
|
||
- name: compile | ||
run: | | ||
chmod +x gradlew | ||
./gradlew build |
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,8 @@ | ||
# Ignore Gradle project-specific cache directory | ||
.gradle | ||
|
||
# Ignore Gradle build output directory | ||
build | ||
|
||
# Ignore IDE project settings directory. | ||
.idea |
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,17 @@ | ||
plugins { | ||
`maven-publish` | ||
} | ||
|
||
publishing { | ||
publications { | ||
create<MavenPublication>("maven") { | ||
from(components["java"]) | ||
} | ||
} | ||
} | ||
|
||
dependencies { | ||
compileOnly("org.jetbrains:annotations:24.0.1") | ||
compileOnly(libs.minimessage) | ||
compileOnly(libs.configurate) | ||
} |
Oops, something went wrong.