mirror of
https://github.com/realm/SwiftLint.git
synced 2026-06-06 20:18:40 +00:00
13 lines
220 B
Swift
13 lines
220 B
Swift
//
|
|
// RuleParameter.swift
|
|
// SwiftLint
|
|
//
|
|
// Created by JP Simard on 2015-05-16.
|
|
// Copyright (c) 2015 Realm. All rights reserved.
|
|
//
|
|
|
|
struct RuleParameter<T> {
|
|
let severity: ViolationSeverity
|
|
let value: T
|
|
}
|