io.github.mfederczuk.ktlint
Owner: Michael Federczuk
ktlint Git-hook installation plugin
https://github.com/mfederczuk/ktlint-gradle-plugin#readme
Sources: https://github.com/mfederczuk/ktlint-gradle-plugin.git
Version 0.1.0-indev05
0.1.0-indev05
Created 14 June 2023.
ktlint Git-hook installation plugin
Using the plugins DSL:
plugins {
id("io.github.mfederczuk.ktlint") version "0.1.0-indev05"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.mfederczuk:ktlint-gradle-plugin:0.1.0-indev05")
}
}
apply(plugin = "io.github.mfederczuk.ktlint")
Using the plugins DSL:
plugins {
id "io.github.mfederczuk.ktlint" version "0.1.0-indev05"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.mfederczuk:ktlint-gradle-plugin:0.1.0-indev05"
}
}
apply plugin: "io.github.mfederczuk.ktlint"