QAInfoForChecker

data class QAInfoForChecker(val checker: String, val file: String, val lines: IntRange = 1..File(file).readText().lines().size, val details: String = "", blamed: Set<String>? = null) : QAInfo

Scans textual reports of issue from static analyzers and attributes them to the committer.

Constructors

Link copied to clipboard
constructor(checker: String, file: String, lines: IntRange = 1..File(file).readText().lines().size, details: String = "", blamed: Set<String>? = null)

Properties

Link copied to clipboard
open override val blamedTo: Set<String>

The committers responsible for the issue.

Link copied to clipboard
open override val checker: String

The static analyzer producing the report.

Link copied to clipboard
open override val details: String

A description of the issue.

Link copied to clipboard
open override val file: String

The file where the issue was detected.

Link copied to clipboard
open override val lines: IntRange

The lines of code affected by the issue.