mirror of
https://github.com/realm/SwiftLint.git
synced 2026-05-07 20:12:49 +00:00
15 lines
572 B
Swift
15 lines
572 B
Swift
/// The magnitude of a `StyleViolation`.
|
|
@MakeAcceptableByConfigurationElement
|
|
public enum ViolationSeverity: String, Comparable, Codable, InlinableOptionType {
|
|
/// Non-fatal. If using SwiftLint as an Xcode build phase, Xcode will mark the build as having succeeded.
|
|
case warning
|
|
/// Fatal. If using SwiftLint as an Xcode build phase, Xcode will mark the build as having failed.
|
|
case error
|
|
|
|
// MARK: Comparable
|
|
|
|
public static func < (lhs: ViolationSeverity, rhs: ViolationSeverity) -> Bool {
|
|
return lhs == .warning && rhs == .error
|
|
}
|
|
}
|