Skip to content

Commit

Permalink
Add missing root project ktlint setting
Browse files Browse the repository at this point in the history
  • Loading branch information
uzzu committed Apr 17, 2020
1 parent 37ea86f commit 23f753c
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,15 @@ allprojects {
}
}

ktlint {
verbose.set(true)
outputToConsole.set(true)
reporters {
reporter(org.jlleitschuh.gradle.ktlint.reporter.ReporterType.CHECKSTYLE)
}
ignoreFailures.set(true)
}

subprojects {
apply(plugin = "org.jlleitschuh.gradle.ktlint")
ktlint {
Expand Down

0 comments on commit 23f753c

Please sign in to comment.