Skip to content

Commit 8a11dd5

Browse files
committedNov 28, 2024
feat: add new api for indentation spaces vs. tabs
add deprecation warning for old api but keep supporting it Refs: diffplug#794, diffplug#2311
1 parent c292510 commit 8a11dd5

File tree

1 file changed

+37
-4
lines changed

1 file changed

+37
-4
lines changed
 

‎plugin-gradle/src/main/java/com/diffplug/gradle/spotless/FormatExtension.java

+37-4
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@
4747
import org.gradle.api.plugins.BasePlugin;
4848
import org.gradle.api.tasks.TaskProvider;
4949
import org.gradle.util.GradleVersion;
50+
import org.slf4j.Logger;
51+
import org.slf4j.LoggerFactory;
5052

5153
import com.diffplug.common.base.Preconditions;
5254
import com.diffplug.spotless.FormatterFunc;
@@ -77,6 +79,9 @@
7779

7880
/** Adds a {@code spotless{Name}Check} and {@code spotless{Name}Apply} task. */
7981
public class FormatExtension {
82+
83+
private static final Logger logger = LoggerFactory.getLogger(FormatExtension.class);
84+
8085
final SpotlessExtension spotless;
8186
final List<Action<FormatExtension>> lazyActions = new ArrayList<>();
8287

@@ -505,25 +510,53 @@ public void endWithNewline() {
505510
}
506511

507512
/** Ensures that the files are indented using spaces. */
513+
public void leadingTabsToSpaces(int spacesPerTab) {
514+
addStep(IndentStep.Type.SPACE.create(spacesPerTab));
515+
}
516+
517+
@Deprecated
508518
public void indentWithSpaces(int numSpacesPerTab) {
509-
addStep(IndentStep.Type.SPACE.create(numSpacesPerTab));
519+
logDeprecation("indentWithSpaces", "leadingTabsToSpaces");
520+
leadingTabsToSpaces(numSpacesPerTab);
510521
}
511522

512523
/** Ensures that the files are indented using spaces. */
513-
public void indentWithSpaces() {
524+
public void leadingTabsToSpaces() {
514525
addStep(IndentStep.Type.SPACE.create());
515526
}
516527

528+
@Deprecated
529+
public void indentWithSpaces() {
530+
logDeprecation("indentWithSpaces", "leadingTabsToSpaces");
531+
leadingTabsToSpaces();
532+
}
533+
517534
/** Ensures that the files are indented using tabs. */
535+
public void leadingSpacesToTabs(int spacesPerTab) {
536+
addStep(IndentStep.Type.TAB.create(spacesPerTab));
537+
}
538+
539+
@Deprecated
518540
public void indentWithTabs(int tabToSpaces) {
519-
addStep(IndentStep.Type.TAB.create(tabToSpaces));
541+
logDeprecation("indentWithTabs", "leadingSpacesToTabs");
542+
leadingSpacesToTabs(tabToSpaces);
520543
}
521544

522545
/** Ensures that the files are indented using tabs. */
523-
public void indentWithTabs() {
546+
public void leadingSpacesToTabs() {
524547
addStep(IndentStep.Type.TAB.create());
525548
}
526549

550+
@Deprecated
551+
public void indentWithTabs() {
552+
logDeprecation("indentWithTabs", "leadingSpacesToTabs");
553+
leadingSpacesToTabs();
554+
}
555+
556+
private static void logDeprecation(String methodName, String replacement) {
557+
logger.warn("'{}' is deprecated, use '{}' in your gradle build script instead.", methodName, replacement);
558+
}
559+
527560
/** Ensures formatting of files via native binary. */
528561
public void nativeCmd(String name, String pathToExe, List<String> arguments) {
529562
addStep(NativeCmdStep.create(name, new File(pathToExe), arguments));

0 commit comments

Comments
 (0)
Please sign in to comment.