Files
SwiftLint/Source/SwiftLintFramework/Reporters/RelativePathReporter.swift
T
Danny Mösch 6c1ae86eb3 Use URL for file paths throughout the code base
# Conflicts:
#	Source/SwiftLintFramework/Extensions/FileManager+SwiftLint.swift
#	Tests/IntegrationTests/ConfigPathResolutionTests.swift
2026-01-24 22:13:56 +01:00

32 lines
1.1 KiB
Swift

/// Reports violations with relative paths.
struct RelativePathReporter: Reporter {
// MARK: - Reporter Conformance
static let identifier = "relative-path"
static let isRealtime = true
static let description = "Reports violations with relative paths."
static func generateReport(_ violations: [StyleViolation]) -> String {
violations.map(generateForSingleViolation).joined(separator: "\n")
}
/// Generates a report for a single violation.
///
/// - parameter violation: The violation to report.
///
/// - returns: The report for a single violation.
internal static func generateForSingleViolation(_ violation: StyleViolation) -> String {
// {relative_path_to_file}{:line}{:character}: {error,warning}: {content}
[
"\(violation.location.file?.relativeFilepath ?? "<nopath>")",
":\(violation.location.line ?? 1)",
":\(violation.location.character ?? 1): ",
"\(violation.severity.rawValue): ",
"\(violation.ruleName) Violation: ",
violation.reason,
" (\(violation.ruleIdentifier))",
].joined()
}
}