|
47 | 47 | import org.gradle.api.plugins.BasePlugin;
|
48 | 48 | import org.gradle.api.tasks.TaskProvider;
|
49 | 49 | import org.gradle.util.GradleVersion;
|
| 50 | +import org.slf4j.Logger; |
| 51 | +import org.slf4j.LoggerFactory; |
50 | 52 |
|
51 | 53 | import com.diffplug.common.base.Preconditions;
|
52 | 54 | import com.diffplug.spotless.FormatterFunc;
|
|
77 | 79 |
|
78 | 80 | /** Adds a {@code spotless{Name}Check} and {@code spotless{Name}Apply} task. */
|
79 | 81 | public class FormatExtension {
|
| 82 | + |
| 83 | + private static final Logger logger = LoggerFactory.getLogger(FormatExtension.class); |
| 84 | + |
80 | 85 | final SpotlessExtension spotless;
|
81 | 86 | final List<Action<FormatExtension>> lazyActions = new ArrayList<>();
|
82 | 87 |
|
@@ -505,25 +510,53 @@ public void endWithNewline() {
|
505 | 510 | }
|
506 | 511 |
|
507 | 512 | /** 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 |
508 | 518 | public void indentWithSpaces(int numSpacesPerTab) {
|
509 |
| - addStep(IndentStep.Type.SPACE.create(numSpacesPerTab)); |
| 519 | + logDeprecation("indentWithSpaces", "leadingTabsToSpaces"); |
| 520 | + leadingTabsToSpaces(numSpacesPerTab); |
510 | 521 | }
|
511 | 522 |
|
512 | 523 | /** Ensures that the files are indented using spaces. */
|
513 |
| - public void indentWithSpaces() { |
| 524 | + public void leadingTabsToSpaces() { |
514 | 525 | addStep(IndentStep.Type.SPACE.create());
|
515 | 526 | }
|
516 | 527 |
|
| 528 | + @Deprecated |
| 529 | + public void indentWithSpaces() { |
| 530 | + logDeprecation("indentWithSpaces", "leadingTabsToSpaces"); |
| 531 | + leadingTabsToSpaces(); |
| 532 | + } |
| 533 | + |
517 | 534 | /** 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 |
518 | 540 | public void indentWithTabs(int tabToSpaces) {
|
519 |
| - addStep(IndentStep.Type.TAB.create(tabToSpaces)); |
| 541 | + logDeprecation("indentWithTabs", "leadingSpacesToTabs"); |
| 542 | + leadingSpacesToTabs(tabToSpaces); |
520 | 543 | }
|
521 | 544 |
|
522 | 545 | /** Ensures that the files are indented using tabs. */
|
523 |
| - public void indentWithTabs() { |
| 546 | + public void leadingSpacesToTabs() { |
524 | 547 | addStep(IndentStep.Type.TAB.create());
|
525 | 548 | }
|
526 | 549 |
|
| 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 | + |
527 | 560 | /** Ensures formatting of files via native binary. */
|
528 | 561 | public void nativeCmd(String name, String pathToExe, List<String> arguments) {
|
529 | 562 | addStep(NativeCmdStep.create(name, new File(pathToExe), arguments));
|
|
0 commit comments