mirror of
https://github.com/realm/SwiftLint.git
synced 2026-06-06 20:18:40 +00:00
14 lines
232 B
Swift
14 lines
232 B
Swift
//
|
|
// ConfigurationError.swift
|
|
// SwiftLint
|
|
//
|
|
// Created by Scott Hoyt on 1/19/16.
|
|
// Copyright © 2016 Realm. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public enum ConfigurationError: Error {
|
|
case unknownConfiguration
|
|
}
|