generated from amazon-archives/__template_Apache-2.0
-
Notifications
You must be signed in to change notification settings - Fork 2
Ktlint upgrade #42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Ktlint upgrade #42
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
9961af8
upgrade
0marperez 2ac88cd
upgrade ktlint to latest version
0marperez 83d8476
remove manual tracking of ktlint version in code
0marperez a14c0f6
try to make ktlint task work on consumers
0marperez dd50396
clean up
0marperez b00efff
Merge branch 'main' of github.com:awslabs/aws-kotlin-repo-tools into …
lauzadis 0950d9b
ktlint is running
lauzadis 3251c17
ktlint is running (in aws-kotlin-repo-tools too now)
lauzadis c0ac365
jvmArgs change
lauzadis 67b3607
ignore backing property rule
lauzadis File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -44,15 +44,14 @@ fun propertyOrEnv(propName: String, envName: String): String? { | |
| return findProperty(propName) as? String ?: env[envName] | ||
| } | ||
|
|
||
| // chicken and egg problem, we can't use the kotlinter gradle plugin here AND use our custom rules | ||
| val ktlint by configurations.creating { | ||
| attributes { | ||
| attribute(Bundling.BUNDLING_ATTRIBUTE, objects.named(Bundling.EXTERNAL)) | ||
| } | ||
| } | ||
| val ktlint by configurations.creating | ||
|
|
||
| dependencies { | ||
| ktlint(libs.ktlint) | ||
| ktlint(libs.ktlint.cli) { | ||
| attributes { | ||
| attribute(Bundling.BUNDLING_ATTRIBUTE, objects.named(Bundling.EXTERNAL)) | ||
| } | ||
| } | ||
| ktlint(project(":ktlint-rules")) | ||
| } | ||
|
|
||
|
|
@@ -61,19 +60,18 @@ val lintPaths = listOf( | |
| ) | ||
|
|
||
| tasks.register<JavaExec>("ktlint") { | ||
| group = LifecycleBasePlugin.VERIFICATION_GROUP | ||
| description = "Check Kotlin code style." | ||
| group = "Verification" | ||
| classpath = configurations.getByName("ktlint") | ||
| classpath = ktlint | ||
| mainClass.set("com.pinterest.ktlint.Main") | ||
| args = lintPaths | ||
| jvmArgs("--add-opens", "java.base/java.lang=ALL-UNNAMED") | ||
| } | ||
|
|
||
| tasks.register<JavaExec>("ktlintFormat") { | ||
| group = LifecycleBasePlugin.VERIFICATION_GROUP | ||
| description = "Auto fix Kotlin code style violations" | ||
| group = "formatting" | ||
| classpath = configurations.getByName("ktlint") | ||
| classpath = ktlint | ||
| mainClass.set("com.pinterest.ktlint.Main") | ||
| args = listOf("-F") + lintPaths | ||
| jvmArgs("--add-opens", "java.base/java.lang=ALL-UNNAMED") | ||
| jvmArgs("--add-opens=java.base/java.lang=ALL-UNNAMED") | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit/style: the same change could be made in |
||
| } | ||
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
File renamed without changes.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
question: why remove the jvm args just for
ktlint?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just following the guide on ktlint docs: https://pinterest.github.io/ktlint/latest/install/integrations/#custom-gradle-integration-with-kotlin-dsl
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would lean towards keeping it since we don't know if it was necessary but I don't feel strongly about it. A good way to test this would be to run ktlint twice, once with and once without
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, just saw this comment after I already merged the PR. I had already tested with and without the jvmArgs locally, there was no difference. In general I think we should trust our dependencies' onboarding guides and if they end up being incorrect, send them a PR to fix the documentation.