net.twisterrob.gradle.quality.report.html.model.SourceViewModel.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of twister-quality Show documentation
Show all versions of twister-quality Show documentation
All quality plugins bundled in one.
The newest version!
package net.twisterrob.gradle.quality.report.html.model
import net.twisterrob.gradle.quality.Violation
import net.twisterrob.gradle.quality.Violation.Source
@Suppress("detekt.UseDataClass") // TODEL https://github.com/detekt/detekt/issues/5339
class SourceViewModel(violation: Violation) {
private val s: Source = violation.source
val parser: String = s.parser
val source: String = s.source
val reporter: String = s.reporter
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy