Files
SwiftLint/tools/Version.swift.template
JP Simard fc3b143973 Rename script directory to tools (#4141)
And move the Danger bazel config there
2022-08-29 01:16:20 -04:00

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__")
}