You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When a comment is placed inside switch right above case: line, ./gradlew spotlessApply adds indents that cause ./gradlew checkstyleMain to fail.
If those indents are removed, checkstyleMain passes but spotlessCheck fails.
only ./gradlew spotlessCheck passing (notice the indent before // TODO):
Describe the bug
When a comment is placed inside
switch
right abovecase:
line,./gradlew spotlessApply
adds indents that cause./gradlew checkstyleMain
to fail.If those indents are removed,
checkstyleMain
passes butspotlessCheck
fails.only
./gradlew spotlessCheck
passing (notice the indent before// TODO
):only
./gradlew checkstyleMain
passing:(example based on DbSpanDecorator.java)
Steps to reproduce
case:
in any switch statement (for example DbSpanDecorator.java)./gradlew spotlessApply
- adds indents./gradlew checkstyleMain
- fails because of the identsThe text was updated successfully, but these errors were encountered: