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