Fix the ktlint failures already present on develop - #3111
Merged
Conversation
StylianosGakis
force-pushed
the
chore/fix-ktlint-formatting
branch
from
August 28, 2026 20:55
0a70e05 to
dbc532e
Compare
StylianosGakis
changed the base branch from
chore/namespace-import-ktlint-rule
to
develop
August 28, 2026 20:55
StylianosGakis
force-pushed
the
chore/fix-ktlint-formatting
branch
from
September 3, 2026 08:31
dbc532e to
d72a3c2
Compare
This was referenced Sep 3, 2026
StylianosGakis
force-pushed
the
chore/fix-ktlint-formatting
branch
2 times, most recently
from
September 4, 2026 16:52
25fe0ff to
4953c5d
Compare
`./gradlew ktlintCheck` fails on develop with two `standard:max-line-length` errors, unrelated to any in-flight work. Left alone it makes any PR that touches ktlint config look like it broke CI. The rule is not auto-fixable, so this is a hand fix: the same 127 character description string appears in two previews and is now split across two literals.
StylianosGakis
marked this pull request as ready for review
September 7, 2026 14:54
StylianosGakis
force-pushed
the
chore/fix-ktlint-formatting
branch
from
September 7, 2026 14:59
4953c5d to
c1cc339
Compare
panasetskaya
approved these changes
Sep 7, 2026
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Fix some red warnings to make the rest of the stack cleaner
🤖 AI description:
ktlintCheckfails on develop with twostandard:max-line-lengtherrors, unrelated to any in-flight work. Left alone it makes any PR that touches ktlint config look like it broke CI, which is why this sits at the bottom of the stack: the PR above adds a new ktlint rule, and that rule is only trustworthy if the task it runs under is otherwise clean.That rule is not auto-fixable, so this is a hand fix. The same 127 character description string appears in two previews in
TerminationRedirectionDestination.ktand is now split across two literals.Repo-wide
ktlintCheckgoes from 2 errors to 0, and stays at 0 from the top of the stack. The module still compiles.