mirror of
https://github.com/2006-Scape/apollo.git
synced 2026-07-07 08:39:17 +00:00
15 lines
395 B
Groovy
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' } }
|
|
}
|
|
}
|