-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support for reading/writing single Enigma files (#19)
* Add support for reading single Enigma files * Add support for writing single Enigma files * Create a subpackage for each mapping format * Add JetBrains annotations; move versions to gradle.properties * Properly configure .editorconfig * Consistently apply `FILE` and `DIR` naming for mapping formats * Make Jetbrains Annotations `compileOnly`
- Loading branch information
1 parent
74d481a
commit 6a06f2a
Showing
22 changed files
with
603 additions
and
440 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 |
---|---|---|
@@ -1,5 +1,14 @@ | ||
[*] | ||
charset = utf-8 | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.{gradle,java}] | ||
indent_style = tab | ||
ij_continuation_indent_size = 8 | ||
ij_java_imports_layout = $*,|,java.**,|,javax.**,|,*,|,net.fabricmc.** | ||
ij_java_class_count_to_use_import_on_demand = 999 | ||
|
||
[*.{yml,yaml}] | ||
indent_style = space | ||
indent_size = 2 |
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,11 @@ | ||
# Gradle Properties | ||
org.gradle.jvmargs = -Xmx2G | ||
|
||
# Project properties | ||
version = 0.4.2 | ||
|
||
# Dependencies | ||
asm_version = 9.5 | ||
tiny_remapper_version = 0.8.0 | ||
jetbrains_annotations_version = 24.0.1 | ||
checkstyle_tool_version = 8.31 |
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.