Skip to content

Commit

Permalink
Merge pull request #8405 from cketti/spotless-ignore-build-dir
Browse files Browse the repository at this point in the history
Exclude build directories in `SpotlessExtension.configureMiscCheck()`
  • Loading branch information
cketti authored Oct 24, 2024
2 parents 939d7a0 + 240f5a0 commit 1bf4fe5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions build-plugin/src/main/kotlin/SpotlessExtension.kt
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ fun SpotlessExtension.configureMiscCheck() {
"*.gradle",
".gitignore",
)
targetExclude(
"**/build/",
)
trimTrailingWhitespace()
}
}
Expand Down

0 comments on commit 1bf4fe5

Please sign in to comment.