-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Have been finding inconsistent results with `ktlint`. I.e. it preserves custom formatting, which you do not want. It should have deterministic output. `ktfmt` was made to solve that: https://github.com/facebook/ktfmt?tab=readme-ov-file#faq I think they should work together? Need to use for a bit to make sure. Still want `ktlint` as it handles some bits better like space between methods.
- Loading branch information
1 parent
a37cd10
commit 657decc
Showing
5 changed files
with
25 additions
and
37 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,7 +1,3 @@ | ||
plugins { | ||
alias(libs.plugins.testsets) | ||
} | ||
plugins { alias(libs.plugins.testsets) } | ||
|
||
testSets { | ||
create("integrationTest") | ||
} | ||
testSets { create("integrationTest") } |
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,3 +1,5 @@ | ||
rootProject.name = "java-template" | ||
|
||
include("example-java") | ||
|
||
include("example-kotlin") |