I have a function:
func abc() -> Example {
// ... code ...
return try contents
.filter { ... }
}
When I save the auto formatter changes it to:
func abc() -> Example {
// ... code ...
return
try contents
.filter { ... }
}
Is that normal? If it is, how could I write it to make it look better? And if it isn’t, how could I disable it?
I have a function:
When I save the auto formatter changes it to:
Is that normal? If it is, how could I write it to make it look better? And if it isn’t, how could I disable it?