mirror of
https://github.com/realm/SwiftLint.git
synced 2026-06-06 20:18:40 +00:00
14 lines
337 B
Swift
14 lines
337 B
Swift
//
|
|
// Reporter.swift
|
|
// SwiftLint
|
|
//
|
|
// Created by JP Simard on 9/19/15.
|
|
// Copyright © 2015 Realm. All rights reserved.
|
|
//
|
|
|
|
public protocol Reporter: CustomStringConvertible {
|
|
static var identifier: String { get }
|
|
static func generateReport(violations: [StyleViolation]) -> String
|
|
static var isRealtime: Bool { get }
|
|
}
|