mirror of
https://github.com/realm/SwiftLint.git
synced 2026-05-07 20:12:49 +00:00
9 lines
240 B
Swift
9 lines
240 B
Swift
/// A type describing the SwiftLint version.
|
|
public struct Version {
|
|
/// The string value for this version.
|
|
public let value: String
|
|
|
|
/// The current SwiftLint version.
|
|
public static let current = Version(value: "0.52.3")
|
|
}
|