org.jmailen.kotlinter
Owner: Jeremy Mailen
Linting and formatting for Kotlin source code using ktlint
https://github.com/jeremymailen/kotlinter-gradle
Sources: https://github.com/jeremymailen/kotlinter
Version 1.24.1
1.24.1
Created 04 May 2019.
Lint and formatting for Kotlin using ktlint with configuration-free setup on JVM and Android projects
Using the plugins DSL:
plugins {
id("org.jmailen.kotlinter") version "1.24.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.jmailen.gradle:kotlinter-gradle:1.24.1")
}
}
apply(plugin = "org.jmailen.kotlinter")
Using the plugins DSL:
plugins {
id "org.jmailen.kotlinter" version "1.24.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.jmailen.gradle:kotlinter-gradle:1.24.1"
}
}
apply plugin: "org.jmailen.kotlinter"