Skip to content

Commit c2eb5f7

Browse files
build: config option renamed in spotless 8 plugin (#528)
The `removeWildcardImports` configuration option was renamed to `forbidWildcardImports` in v8.0.0 of the Spotless Gradle plugin. https://github.com/diffplug/spotless/releases/tag/gradle/8.0.0 This change uses the new named to avoid a build time warning. Signed-off-by: Mark S. Lewis <Mark.S.Lewis@outlook.com>
1 parent a15d9c7 commit c2eb5f7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ allprojects {
5252
googleJavaFormat()
5353
removeUnusedImports()
5454
trimTrailingWhitespace()
55-
removeWildcardImports()
55+
forbidWildcardImports()
5656
}
5757
}
5858
}

0 commit comments

Comments
 (0)