Enable implicit_return and fix all violations (#5658)

This commit is contained in:
Martin Redington
2024-07-10 12:15:19 +01:00
committed by GitHub
parent 202adf0220
commit ed10aec5f8
140 changed files with 360 additions and 367 deletions
@@ -5,7 +5,7 @@ internal struct HashableConfigurationRuleWrapperWrapper: Hashable {
lhs: HashableConfigurationRuleWrapperWrapper, rhs: HashableConfigurationRuleWrapperWrapper
) -> Bool {
// Only use identifier for equality check (not taking config into account)
return type(of: lhs.configurationRuleWrapper.rule).description.identifier
type(of: lhs.configurationRuleWrapper.rule).description.identifier
== type(of: rhs.configurationRuleWrapper.rule).description.identifier
}