We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6bbded commit a35bae3Copy full SHA for a35bae3
app/src/main/java/com/diffplug/spotless/cli/SpotlessCLI.java
@@ -44,6 +44,7 @@
44
@Command(
45
name = "spotless",
46
mixinStandardHelpOptions = true,
47
+ usageHelpAutoWidth = true,
48
versionProvider = SpotlessCLIVersionProvider.class,
49
description = "Runs spotless",
50
synopsisSubcommandLabel = "[FORMATTING_STEPS]",
app/src/main/java/com/diffplug/spotless/cli/steps/SpotlessFormatterStep.java
@@ -24,7 +24,7 @@
24
25
import picocli.CommandLine;
26
27
-@CommandLine.Command(mixinStandardHelpOptions = true)
+@CommandLine.Command(mixinStandardHelpOptions = true, usageHelpAutoWidth = true)
28
public abstract class SpotlessFormatterStep implements SpotlessCLIFormatterStep {
29
30
@NotNull @Override
0 commit comments