Files
SwiftLint/Source/SwiftLintFramework/Protocols/RuleConfig.swift
T
2016-01-23 17:42:13 -08:00

15 lines
288 B
Swift

//
// RuleConfig.swift
// SwiftLint
//
// Created by Scott Hoyt on 1/19/16.
// Copyright © 2016 Realm. All rights reserved.
//
import Foundation
public protocol RuleConfig {
mutating func setConfig(config: AnyObject) throws
func isEqualTo(ruleConfig: RuleConfig) -> Bool
}