Is there a detekt / ktlint rule to enforce formatt...
# detekt
s
Is there a detekt / ktlint rule to enforce formatting of non-one-liner function-expressions to be
Copy code
fun addResult(projectAnalyzerResult: ProjectAnalyzerResult) = apply {
    // ...
}
instead of
Copy code
fun addResult(projectAnalyzerResult: ProjectAnalyzerResult) =
    apply {
        // ...
    }
?