extension CGRect {
var x: CGFloat {
set { self.origin.x = newValue }
get { return self.origin.x } > got warning this line
}
}
warning:
Implicit Getter Violation: Computed read-only properties should avoid using the get keyword. (implicit_getter)
Swiftlint Docs has no Example
https://realm.github.io/SwiftLint/implicit_getter.html
How can I solve this warning? Except ignore