[Lint] Arguments should be either all on the same line, or one per line

This commit is contained in:
Matt Rubin 2018-09-21 02:05:58 -04:00
parent 9f3f9034ee
commit 31a755dd49
2 changed files with 3 additions and 1 deletions

View File

@ -17,6 +17,7 @@ opt_in_rules:
- first_where
- implicitly_unwrapped_optional
- modifier_order
- multiline_arguments
- overridden_super_call
- private_outlet
- prohibited_super_call

View File

@ -152,7 +152,8 @@ public final class Repository {
credentials: Credentials = .default, checkoutStrategy: CheckoutStrategy = .Safe,
checkoutProgress: CheckoutProgressBlock? = nil) -> Result<Repository, NSError> {
var options = cloneOptions(
bare: bare, localClone: localClone,
bare: bare,
localClone: localClone,
fetchOptions: fetchOptions(credentials: credentials),
checkoutOptions: checkoutOptions(strategy: checkoutStrategy, progress: checkoutProgress))