-
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
1,133 changed files
with
38,376 additions
and
30,752 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,29 @@ | ||
# top-most EditorConfig file | ||
root = true | ||
|
||
[*] | ||
# [encoding-utf8] | ||
charset = utf-8 | ||
|
||
# [newline-lf] | ||
end_of_line = lf | ||
|
||
# [newline-eof] | ||
insert_final_newline = true | ||
|
||
[*.bat] | ||
end_of_line = crlf | ||
|
||
[*.java] | ||
# [indentation-tab] | ||
indent_style = tab | ||
|
||
# [4-spaces-tab] | ||
indent_size = 4 | ||
tab_width = 4 | ||
|
||
# [no-trailing-spaces] | ||
trim_trailing_whitespace = true | ||
|
||
[line-length-120] | ||
max_line_length = 120 |
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,18 +1,18 @@ | ||
# Set the default behavior, in case people don't have core.autocrlf set. | ||
* text=auto | ||
* text=auto eol=lf | ||
|
||
# Explicitly declare text files you want to always be normalized and converted | ||
# to native line endings on checkout. | ||
*.java text=auto | ||
*.sql text=auto | ||
*.md text=auto | ||
*.txt text=auto | ||
*.gradle text=auto | ||
Dockerfile text=auto | ||
*.yml text=auto | ||
*.yaml text=auto | ||
*.sh text=auto | ||
|
||
*.java text=auto eol=lf | ||
*.sql text=auto eol=lf | ||
*.md text=auto eol=lf | ||
*.txt text=auto eol=lf | ||
*.gradle text=auto eol=lf | ||
Dockerfile text=auto eol=lf | ||
*.yml text=auto eol=lf | ||
*.yaml text=auto eol=lf | ||
*.sh text=auto eol=lf | ||
*.bat text=auto eol=crlf | ||
# Denote all files that are truly binary and should not be modified. | ||
*.png binary | ||
*.jpg binary | ||
*.jpg binary |
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,21 @@ | ||
name: 👮Checkstyle validation | ||
|
||
on: | ||
pull_request: | ||
branches: [ main, dev ] | ||
|
||
jobs: | ||
checkstyle: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 11 | ||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
- name: Main checkstyle | ||
run: ./gradlew --console verbose clean checkstyleMain | ||
- name: ️Test checkstyle | ||
run: ./gradlew --console verbose clean checkstyleTest |
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.