diff --git a/.swiftlint.yml b/.swiftlint.yml index 059e212..affaaaf 100644 --- a/.swiftlint.yml +++ b/.swiftlint.yml @@ -17,6 +17,7 @@ opt_in_rules: - first_where - implicitly_unwrapped_optional - modifier_order + - multiline_arguments - overridden_super_call - private_outlet - prohibited_super_call diff --git a/SwiftGit2/Repository.swift b/SwiftGit2/Repository.swift index edb95b2..9be6edb 100644 --- a/SwiftGit2/Repository.swift +++ b/SwiftGit2/Repository.swift @@ -152,7 +152,8 @@ public final class Repository { credentials: Credentials = .default, checkoutStrategy: CheckoutStrategy = .Safe, checkoutProgress: CheckoutProgressBlock? = nil) -> Result { var options = cloneOptions( - bare: bare, localClone: localClone, + bare: bare, + localClone: localClone, fetchOptions: fetchOptions(credentials: credentials), checkoutOptions: checkoutOptions(strategy: checkoutStrategy, progress: checkoutProgress))