com.pinterest.ktlint.reporter.checkstyle.CheckStyleReporterProvider.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ktlint-reporter-checkstyle Show documentation
Show all versions of ktlint-reporter-checkstyle Show documentation
An anti-bikeshedding Kotlin linter with built-in formatter.
package com.pinterest.ktlint.reporter.checkstyle
import com.pinterest.ktlint.core.Reporter
import com.pinterest.ktlint.core.ReporterProvider
import java.io.PrintStream
class CheckStyleReporterProvider : ReporterProvider {
override val id: String = "checkstyle"
override fun get(out: PrintStream, opt: Map): Reporter = CheckStyleReporter(out)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy