We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c452b80 commit df7bd3cCopy full SHA for df7bd3c
.swiftlint.yml
@@ -52,6 +52,7 @@ opt_in_rules:
52
- redundant_nil_coalescing
53
- redundant_type_annotation
54
- sorted_first_last
55
+ - static_operator
56
- strict_fileprivate
57
- switch_case_on_newline
58
- toggle_bool
SwiftGit2/Objects.swift
@@ -83,13 +83,6 @@ extension Signature: Hashable {
83
}
84
85
86
-public func == (lhs: Signature, rhs: Signature) -> Bool {
87
- return lhs.name == rhs.name
88
- && lhs.email == rhs.email
89
- && lhs.time == rhs.time
90
- && lhs.timeZone == rhs.timeZone
91
-}
92
-
93
/// A git commit.
94
public struct Commit: ObjectType, Hashable {
95
public static let type = GIT_OBJ_COMMIT
0 commit comments