You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: app/src/main/java/com/diffplug/spotless/cli/steps/CleanThat.java
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -59,7 +59,7 @@ static class DefaultValueProvider extends CustomVersion.CustomVersionDefaultValu
59
59
names = {"--use-default-mutators", "-d"},
60
60
defaultValue = "true",
61
61
description =
62
-
"Use the default mutators provided by CleanThat. Default mutators are: <${usage.cleanthat.defaultMutators}>."
62
+
"Use the default mutators provided by ${COMMAND-NAME}. Default mutators are: <${usage.cleanthat.defaultMutators}>."
63
63
+ OptionConstants.DEFAULT_VALUE_SUFFIX)
64
64
booleanuseDefaultMutators;
65
65
@@ -69,7 +69,7 @@ static class DefaultValueProvider extends CustomVersion.CustomVersionDefaultValu
69
69
split = OptionConstants.OPTION_LIST_SPLIT,
70
70
paramLabel = "mutator",
71
71
description =
72
-
"Add a mutator to the list of mutators to use. Mutators are the individual refactoring steps CleanThat applies. A list of available mutators can be found in the \"Additional Info\" section. ")
72
+
"Add a mutator to the list of mutators to use. Mutators are the individual refactoring steps ${COMMAND-NAME} applies. A list of available mutators can be found in the \"Additional Info\" section. ")
73
73
List<String> addMutators;
74
74
75
75
@CommandLine.Option(
@@ -93,7 +93,7 @@ static class DefaultValueProvider extends CustomVersion.CustomVersionDefaultValu
93
93
names = {"--source-compatibility", "-s"},
94
94
defaultValue = "1.8",
95
95
description =
96
-
"The source JDK version to use for the CleanThat mutators. This is used to determine the Java language features available."
96
+
"The source JDK version to use for the ${COMMAND-NAME} mutators. This is used to determine the Java language features available."
Copy file name to clipboardExpand all lines: app/src/main/java/com/diffplug/spotless/cli/steps/EclipseWtp.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -54,14 +54,14 @@ static class DefaultValueProvider extends CustomVersion.CustomVersionDefaultValu
54
54
@CommandLine.Option(
55
55
names = {"-f", "--config-file"},
56
56
arity = "0",
57
-
description = "The path to the Eclipse WTP configuration file. "
57
+
description = "The path to the ${COMMAND-NAME} configuration file. "
58
58
+ "For supported config file options see spotless documentation (additional info links).")
59
59
List<Path> configFiles;
60
60
61
61
@CommandLine.Option(
62
62
names = {"-t", "--type"},
63
63
description =
64
-
"The type of the Eclipse WTP formatter. If not provided, the type will be guessed based on the first few files we find. If that does not work, we fail the formatting run."
64
+
"The type of the ${COMMAND-NAME}. If not provided, the type will be guessed based on the first few files we find. If that does not work, we fail the formatting run."
0 commit comments