-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #148 from German-Immersive-Railroading-Community/f…
…eat/remoteActivator Feat/remote activator
- Loading branch information
Showing
17 changed files
with
837 additions
and
238 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,18 @@ | ||
on: pull_request | ||
|
||
jobs: | ||
checkstyle_job: | ||
runs-on: ubuntu-latest | ||
name: Checkstyle job | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Run check style | ||
uses: nikitasavinov/checkstyle-action@master | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
checkstyle_config: checkstyle.xml | ||
reporter: "github-pr-review" | ||
tool_name: "Checkstyle" | ||
level: "error" | ||
fail_on_error: true |
Large diffs are not rendered by default.
Oops, something went wrong.
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,59 @@ | ||
<?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"> | ||
|
||
<!-- | ||
This configuration file was written by the eclipse-cs plugin configuration editor | ||
--> | ||
<!-- | ||
Checkstyle-Configuration: GIRCCheckStyle | ||
Description: none | ||
--> | ||
<module name="Checker"> | ||
<property name="severity" value="warning"/> | ||
<property name="fileExtensions" value="java"/> | ||
<module name="TreeWalker"> | ||
<module name="ConstantName"/> | ||
<module name="AbbreviationAsWordInName"/> | ||
<module name="IllegalIdentifierName"/> | ||
<module name="PackageName"/> | ||
<module name="ClassTypeParameterName"/> | ||
<module name="LocalVariableName"/> | ||
<module name="MethodTypeParameterName"/> | ||
<module name="TypeName"/> | ||
<module name="MethodName"/> | ||
<module name="MemberName"/> | ||
<module name="InterfaceTypeParameterName"/> | ||
<module name="LambdaParameterName"> | ||
<property name="format" value="^[a-z_][a-zA-Z0-9]*$"/> | ||
</module> | ||
<module name="StaticVariableName"/> | ||
<module name="RecordTypeParameterName"/> | ||
<module name="ParameterName"/> | ||
<module name="CatchParameterName"/> | ||
<module name="PatternVariableName"/> | ||
<module name="RecordComponentName"/> | ||
<module name="LocalFinalVariableName"/> | ||
<module name="RedundantImport"/> | ||
<module name="UnusedImports"/> | ||
<module name="Indentation"> | ||
<property name="arrayInitIndent" value="8"/> | ||
</module> | ||
<module name="SingleSpaceSeparator"/> | ||
<module name="AnnotationUseStyle"/> | ||
<module name="AnnotationLocation"/> | ||
<module name="FinalParameters"> | ||
<property name="severity" value="warning"/> | ||
<property name="tokens" value="METHOD_DEF,CTOR_DEF,LITERAL_CATCH,FOR_EACH_CLAUSE"/> | ||
</module> | ||
<module name="MissingOverride"/> | ||
<module name="BooleanExpressionComplexity"/> | ||
<module name="FinalClass"/> | ||
<module name="HideUtilityClassConstructor"/> | ||
</module> | ||
<module name="LineLength"> | ||
<property name="max" value="120"/> | ||
</module> | ||
<module name="FileTabCharacter"> | ||
<property name="fileExtensions" value="java"/> | ||
</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
Oops, something went wrong.