Skip to content

Commit

Permalink
Fix deprecated spotless options
Browse files Browse the repository at this point in the history
  • Loading branch information
pyamsoft committed Jan 9, 2025
1 parent 18120ed commit 8ec2609
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -213,23 +213,23 @@ allprojects {
removeUnusedImports()
trimTrailingWhitespace()
endWithNewline()
indentWithSpaces(2)
leadingTabsToSpaces(2)
}
kotlin {
target("src/**/*.kt", "*.kts")
ktfmt()

trimTrailingWhitespace()
endWithNewline()
indentWithSpaces(2)
leadingTabsToSpaces(2)
}
groovyGradle {
target("*.gradle")
greclipse()

trimTrailingWhitespace()
endWithNewline()
indentWithSpaces(2)
leadingTabsToSpaces(2)
}
}
}

0 comments on commit 8ec2609

Please sign in to comment.