io.gitlab.arturbosch.detekt.extensions.CustomDetektReport.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 org.gradle.api.tasks.Internal
import org.gradle.api.tasks.OutputFile
import java.io.File
class CustomDetektReport {
@Internal
var reportId: String? = null
@OutputFile
var destination: File? = null
override fun toString(): String {
return "CustomDetektReport(reportId=$reportId, destination=$destination)"
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy