Hi, Is there a opposite of this rule? <https://det...
# detekt
a
Hi, Is there a opposite of this rule? https://detekt.dev/docs/rules/style/#expressionbodysyntax i.e: Non-compliant
Copy code
fun stuff() = 5
Compliant
Copy code
fun stuff(): Int {
    return 5
}
b
So, that it always forbid expression functions?
👌 1
No, there is not
🆗 1
a
👌
a
You can create issue for this if not exists already