com.freeletics.gradle.scripts.KtLintError.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scripts-formatting Show documentation
Show all versions of scripts-formatting Show documentation
Collection of formatting related kts scripts
The newest version!
package com.freeletics.gradle.scripts
import com.pinterest.ktlint.rule.engine.api.LintError
import java.nio.file.Path
internal data class KtLintError(
val file: Path,
val error: LintError,
val corrected: Boolean,
) {
fun print(prefix: String) {
println("$prefix $file:${error.line} ${error.ruleId} ${error.detail}")
}
}