In case like
guard let item = viewModel.item else { return }
I would like to keep the { return } on the same line, rather than
guard let item = viewModel.item else {
return
}
This could be limited to else statements that are just one line long (which is very common).