Skip to content

Commit

Permalink
Fix Spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
wmontwe committed Dec 4, 2024
1 parent 4a30419 commit bb88734
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build-plugin/src/main/kotlin/SpotlessExtension.kt
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ fun SpotlessExtension.configureKotlinGradleCheck(
.editorConfigOverride(
mapOf(
"ktlint_standard_function-signature" to "disabled",
)
),
)
target(targets)
target(*targets.toTypedArray())
targetExclude("**/build/")
}
}
Expand All @@ -45,9 +45,9 @@ fun SpotlessExtension.configureMarkdownCheck(
prettier("3.3.3").config(
mapOf(
"parser" to "markdown",
)
),
)
target(targets)
target(*targets.toTypedArray())
targetExclude(
"**/build/",
)
Expand Down

0 comments on commit bb88734

Please sign in to comment.