SwiftLint/tools/Version.swift.template

9 lines
245 B
Plaintext

/// 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: "__VERSION__")
}