Skip to content

Commit

Permalink
Swiftlint
Browse files Browse the repository at this point in the history
  • Loading branch information
mono0926 committed May 20, 2017
1 parent 9d8ca6c commit fc9e110
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .swiftlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ included:
- Sources
- Tests

line_length: 140
line_length: 150
5 changes: 2 additions & 3 deletions Sources/LicensePlist/main.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,13 @@ let main = command(Option("cartfile-path", Consts.cartfileName),
Option("config-path", Consts.configPath),
Flag("force"),
Flag("add-version-numbers"),
Flag("suppress-opening-directory")) {
cartfile, podsPath, output, gitHubToken, configPath, force, version, suppressOpeningDirectory in
Flag("suppress-opening-directory")) { cartfile, podsPath, output, gitHubToken, configPath, force, version, suppressOpen in

Logger.configure()
var config = loadConfig(configPath: URL(fileURLWithPath: configPath))
config.force = force
config.addVersionNumbers = version
config.suppressOpeningDirectory = suppressOpeningDirectory
config.suppressOpeningDirectory = suppressOpen
let options = Options(outputPath: URL(fileURLWithPath: output),
cartfilePath: URL(fileURLWithPath: cartfile),
podsPath: URL(fileURLWithPath: podsPath),
Expand Down

0 comments on commit fc9e110

Please sign in to comment.