30 lines
1.1 KiB
Swift
30 lines
1.1 KiB
Swift
/// Reports violations in the format Xcode uses to display in the IDE. (default)
|
|
public struct XcodeReporter: Reporter {
|
|
// MARK: - Reporter Conformance
|
|
|
|
public static let identifier = "xcode"
|
|
public static let isRealtime = true
|
|
|
|
public var description: String {
|
|
return "Reports violations in the format Xcode uses to display in the IDE. (default)"
|
|
}
|
|
|
|
public static func generateReport(_ violations: [StyleViolation]) -> String {
|
|
return violations.map(generateForSingleViolation).joined(separator: "\n")
|
|
}
|
|
|
|
/// Generates a report for a single violation.
|
|
///
|
|
/// - parameter violation: The violation to report.
|
|
internal static func generateForSingleViolation(_ violation: StyleViolation) -> String {
|
|
// {full_path_to_file}{:line}{:character}: {error,warning}: {content}
|
|
return [
|
|
"\(violation.location): ",
|
|
"\(violation.severity.rawValue): ",
|
|
"\(violation.ruleDescription.name) Violation: ",
|
|
violation.reason,
|
|
" (\(violation.ruleDescription.identifier))"
|
|
].joined()
|
|
}
|
|
}
|