tech.formatter-kt.formatter
Owner: Bradford Hovinen
Automatically formats Kotlin code
https://github.com/hovinen/kotlin-auto-formatter
Sources: https://github.com/hovinen/kotlin-auto-formatter
Version 0.7.9 (latest)
0.7.9
Created 07 October 2021.
Automatically formats Kotlin code
Using the plugins DSL:
plugins {
id("tech.formatter-kt.formatter") version "0.7.9"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.tech.formatter-kt:plugin:0.7.9")
}
}
apply(plugin = "tech.formatter-kt.formatter")
Using the plugins DSL:
plugins {
id "tech.formatter-kt.formatter" version "0.7.9"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.tech.formatter-kt:plugin:0.7.9"
}
}
apply plugin: "tech.formatter-kt.formatter"