Closed rggjan closed 4 years ago
Thanks for report, the root cause is the wrap in un-complete line.
func application(_ app: UIApplication, didFinishLaunchingWithOptions _: [UIApplication.LaunchOptionsKey: Any]?)
-> Bool {
and
class AppDelegate: UIResponder,
UIApplicationDelegate {
You can try [cmd] + [a] and [control] + [i] to compare apple built-in indent vs swimat does. Anyway this will fix in next version. Before the release come out, you can first keep these in same line like:
func application(_ app: UIApplication, didFinishLaunchingWithOptions _: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
and
class AppDelegate: UIResponder, UIApplicationDelegate {
Swimat formats this:
to this:
and, even worse, this:
to this:
Is this expected?