Files
apollo/gradle/kotlin.gradle
T
2018-08-22 23:00:17 +01:00

15 lines
395 B
Groovy

gradle.projectsEvaluated {
configure(subprojects.findAll { it.pluginManager.hasPlugin('kotlin') }) {
apply plugin: 'org.jmailen.kotlinter'
kotlinter {
ignoreFailures = true
indentSize = 4
continuationIndentSize = 4
reporters = ['checkstyle', 'plain']
}
kotlin { experimental { coroutines 'enable' } }
}
}