io.gitlab.arturbosch.detekt.extensions.DetektReport.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of detekt-gradle-plugin Show documentation
Show all versions of detekt-gradle-plugin Show documentation
Static code analysis for Kotlin
package io.gitlab.arturbosch.detekt.extensions
import java.io.File
class DetektReport(val type: DetektReportType) {
var enabled: Boolean? = null
var destination: File? = null
override fun toString(): String {
return "DetektReport(type='$type', enabled=$enabled, destination=$destination)"
}
companion object {
const val DEFAULT_FILENAME = "detekt"
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy