This is an opinionated rule, so it should be opt-in. But a rule that enforces return. Based in [this discussion](https://github.com/apple/swift-syntax/pull/2022#discussion_r1287171229) I think it could be a nice fit. Triggers ```swift func foo() -> String { "bar" } ``` ```swift func foo: String { "bar" } ``` Non-triggers ```swift func foo() -> String { return "bar" } ``` ```swift func foo() -> Void { someApiCall() } ``` ```swift func foo() { someApiCall() } ``` ```swift func foo: String { return "bar" } ```