Skip to content

Commit

Permalink
Close #238 - Increase the column length of help descriptions from 80 …
Browse files Browse the repository at this point in the history
…to 100
  • Loading branch information
kevin-lee committed Mar 23, 2021
1 parent 7c382a2 commit c039538
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/src/main/scala/maven2sbt/cli/MainIo.scala
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ trait MainIo[A] extends IOApp {

def runApp(args: A): IO[Either[Maven2SbtError, Unit]]

def prefs: Prefs = DefaultPrefs()
def prefs: Prefs = DefaultPrefs().copy(descIndent = 33, width = 100)

def exitWith[X](exitCode: ExitCode): IO[X] =
IO(sys.exit(exitCode.code))
Expand Down

0 comments on commit c039538

Please sign in to comment.