Hello, is there a rule that stops ktlint from form...
# ktlint
k
Hello, is there a rule that stops ktlint from formatting lambda braces to fall outside of brackets?
Copy code
class SomethingTest : FunSpec(
 {

 },
)
What I prefer is
Copy code
class SomethingTest : FunSpec({

})
p
You will need to disable
class-signature
rule for this in `.editorconfig`:
Copy code
ktlint_standard_class-signature = disabled
But you will loose all functionality of the rule.
👍 1