Removed uneeded ktlint configuration.

This commit is contained in:
Erik C. Thauvin 2018-06-30 23:29:15 -07:00
parent 1e4e6a9608
commit 5073463d1b
6 changed files with 106 additions and 105 deletions

View file

@ -1,5 +1,4 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
import org.jlleitschuh.gradle.ktlint.KtlintExtension
plugins {
`kotlin-dsl`
@ -56,7 +55,7 @@ tasks {
}
}
val test by getting {
val check by getting {
dependsOn("ktlintCheck")
}
}
@ -87,9 +86,4 @@ pluginBundle {
groupId = project.group.toString()
artifactId = project.name
}
}
configure<KtlintExtension> {
verbose = true
outputToConsole = true
}