mirror of
https://github.com/realm/SwiftLint.git
synced 2026-06-06 20:18:40 +00:00
15 lines
323 B
Swift
15 lines
323 B
Swift
//
|
|
// RuleConfiguration.swift
|
|
// SwiftLint
|
|
//
|
|
// Created by Scott Hoyt on 1/19/16.
|
|
// Copyright © 2016 Realm. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public protocol RuleConfiguration {
|
|
mutating func setConfiguration(config: AnyObject) throws
|
|
func isEqualTo(ruleConfiguration: RuleConfiguration) -> Bool
|
|
}
|