All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.gitlab.arturbosch.detekt.extensions.DetektReport.kt Maven / Gradle / Ivy

There is a newer version: 1.23.7
Show newest version
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