An example - original:
import SwiftUI
public extension AnyTransition {
static var safeOpacity: AnyTransition {
unsafe .opacity
}
}
After swiftformat (v 0.60.1):
import SwiftUI
public extension AnyTransition {
static var safeOpacity: AnyTransition {
unsafe.opacity
}
}
(Notice the removed space)
Pretty minor but I thought I should report it :)
An example - original:
After swiftformat (v 0.60.1):
(Notice the removed space)
Pretty minor but I thought I should report it :)