mirror of
https://github.com/realm/SwiftLint.git
synced 2026-06-06 20:18:40 +00:00
18 lines
273 B
Swift
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
|
|
}
|