I think the `MultilineRawStringIndentation` rule c...
# detekt
e
I think the
MultilineRawStringIndentation
rule conflicts w/ ktlint's
string-template-indent
rule, at least when using it for JSON.
Copy code
val request =
            """
            {
                "fileName" : "foo.pdf",
                "contentLength" : 1234,
                "contentType" : "application/pdf"
            }
            """.trimIndent()
b
Child you create an issue with what ktlint formats and what detekts recommend? It seems that there is a conflict, as you said. The problem is going to be too find some official documentation to know which one is "correct".