Files
SwiftLint/Source/SwiftLintFramework/Models/RuleKind.swift
T
2017-07-02 15:50:16 +02:00

18 lines
273 B
Swift

//
// RuleKind.swift
// SwiftLint
//
// Created by Marcelo Fabri on 05/26/17.
// Copyright © 2017 Realm. All rights reserved.
//
import Foundation
public enum RuleKind: String {
case lint
case idiomatic
case style
case metrics
case performance
}