Skip to content
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

Add rule to add braces to multiline when-condition #2557

Open
paul-dingemans opened this issue Feb 20, 2024 · 0 comments
Open

Add rule to add braces to multiline when-condition #2557

paul-dingemans opened this issue Feb 20, 2024 · 0 comments
Milestone

Comments

@paul-dingemans
Copy link
Collaborator

Similar to the if-else-bracing rule, all branches in a when-statement should be wrapped in braces. Braces are helpful for following reasons:

  • Bodies of the when-conditions are all aligned at same column position
  • Closing braces helps in separation the when-conditions

Invalid:

fun foo(bar: Bar) =
    when (bar) {
        ABC_ABC_ABC_ABC -> "Lorem ipsum 1"
        DE ->
            "Lorem ipsum 2"
        FGHIJ -> {
            """
            Lorem ipsum 3
            """.trimIndent()
        }
        KLMNOPQ -> "Lorem ipsum 4"
        else -> null
    }

Valid:

fun foo(bar: Bar) =
    when (bar) {
        ABC_ABC_ABC_ABC -> {
            "Lorem ipsum 1"
        }
        DE -> {
            "Lorem ipsum 2"
        }
        FGHIJ -> {
            """
            Lorem ipsum 3
            """.trimIndent()
        }
        KLMNOPQ -> {
            "Lorem ipsum 4"
        }
        else -> {
            null
        }
    }

A when-statement for which all branches are single lines should not be affected.

Valid:

fun foo(bar: Bar) =
    when (bar) {
        ABC_ABC_ABC_ABC -> "Lorem ipsum 1"
        DE -> "Lorem ipsum 2"
        FGHIJ -> """Lorem ipsum 3""".trimIndent()
        KLMNOPQ -> "Lorem ipsum 4"
        else -> null
    }
@paul-dingemans paul-dingemans added this to the 1.3.0 milestone Mar 3, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant