-
Notifications
You must be signed in to change notification settings - Fork 486
Closed
Labels
Description
So I have this simple groovy formatter just to ensure that all files Groovy and Groovy related files end with newlines and are indented using 4 spaces. However, when I run ./gradlew spotlessApply
, files that are indented with 2 spaces are not converted. Here is the block:
spotless {
format 'groovy', {
target '*.gradle', 'Jenkinsfile*', '*.groovy'
indentWithSpaces()
endWithNewline()
}
}
I am not using the groovy
formatter because I have Jenkins script files that are located outside of source sets. So according to the documentation, this should work, since I have defined the target file name matcher, and the rules I want applied.
Spotless version: 5.10.0
Gradle version: 6.7
Operating system: Fedora 33