Skip to content

Commit 88367cc

Browse files
committed
build: revert Spotless plugin to '6.25.0'
diffplug/spotless#2372 Signed-off-by: Jendrik Johannes <[email protected]>
1 parent cd0c047 commit 88367cc

4 files changed

+4
-4
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ description = "Gradle convention plugins used by Hiero projects"
1111
dependencies {
1212
implementation("com.adarshr:gradle-test-logger-plugin:4.0.0")
1313
implementation("com.autonomousapps:dependency-analysis-gradle-plugin:2.6.1")
14-
implementation("com.diffplug.spotless:spotless-plugin-gradle:7.0.1")
14+
implementation("com.diffplug.spotless:spotless-plugin-gradle:6.25.0")
1515
implementation("com.github.node-gradle:gradle-node-plugin:7.1.0") // install NPM for prettier
1616
implementation("com.google.protobuf:protobuf-gradle-plugin:0.9.4")
1717
implementation("com.gradle.publish:plugin-publish-plugin:1.3.0")

src/main/kotlin/org.hiero.gradle.check.spotless-markdown.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ spotless {
77
targetExclude("platform-sdk/sdk/**", "node_modules/**")
88
flexmark()
99
trimTrailingWhitespace()
10-
leadingTabsToSpaces()
10+
indentWithSpaces()
1111
endWithNewline()
1212
}
1313
}

src/main/kotlin/org.hiero.gradle.check.spotless-misc.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ spotless {
88

99
// define the steps to apply to those files
1010
trimTrailingWhitespace()
11-
leadingTabsToSpaces()
11+
indentWithSpaces()
1212
endWithNewline()
1313
}
1414
}

src/main/kotlin/org.hiero.gradle.check.spotless-yaml.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ spotless {
2626
prettier().npmExecutable(npm)
2727

2828
trimTrailingWhitespace()
29-
leadingTabsToSpaces()
29+
indentWithSpaces()
3030
endWithNewline()
3131

3232
licenseHeader(LicenseHeader.yamlFormat(project), "\\w+\\:").updateYearWithLatest(true)

0 commit comments

Comments
 (0)