mirror of
https://github.com/realm/SwiftLint.git
synced 2026-06-06 20:18:40 +00:00
b83e0991b9
The MIT license doesn't require that all files be prepended with this licensing or copyright information. Realm confirmed that they're ok with this change. This will enable some companies to contribute to SwiftLint and the date & authorship information will remain accessible via git source control.
89 lines
2.9 KiB
Swift
89 lines
2.9 KiB
Swift
import Foundation
|
|
import SourceKittenFramework
|
|
|
|
public struct SwiftVersion: RawRepresentable {
|
|
public typealias RawValue = String
|
|
|
|
public let rawValue: String
|
|
|
|
public init(rawValue: String) {
|
|
self.rawValue = rawValue
|
|
}
|
|
}
|
|
|
|
extension SwiftVersion: Comparable {
|
|
// Comparable
|
|
public static func < (lhs: SwiftVersion, rhs: SwiftVersion) -> Bool {
|
|
return lhs.rawValue < rhs.rawValue
|
|
}
|
|
}
|
|
|
|
public extension SwiftVersion {
|
|
static let three = SwiftVersion(rawValue: "3.0.0")
|
|
static let four = SwiftVersion(rawValue: "4.0.0")
|
|
static let fourDotOne = SwiftVersion(rawValue: "4.1.0")
|
|
|
|
static let current: SwiftVersion = {
|
|
// Allow forcing the Swift version, useful in cases where SourceKit isn't available
|
|
if let envVersion = ProcessInfo.processInfo.environment["SWIFTLINT_SWIFT_VERSION"] {
|
|
switch envVersion {
|
|
case "4":
|
|
return .four
|
|
default:
|
|
return .three
|
|
}
|
|
}
|
|
|
|
let file = File(contents: """
|
|
#if swift(>=4.2.0)
|
|
let version = "4.2.0"
|
|
#elseif swift(>=4.1.1)
|
|
let version = "4.1.1"
|
|
#elseif swift(>=4.1.0)
|
|
let version = "4.1.0"
|
|
#elseif swift(>=4.0.3)
|
|
let version = "4.0.3"
|
|
#elseif swift(>=4.0.2)
|
|
let version = "4.0.2"
|
|
#elseif swift(>=4.0.1)
|
|
let version = "4.0.1"
|
|
#elseif swift(>=4.0.0)
|
|
let version = "4.0.0"
|
|
#elseif swift(>=3.4.0)
|
|
let version = "3.4.0"
|
|
#elseif swift(>=3.3.1)
|
|
let version = "3.3.1"
|
|
#elseif swift(>=3.3.0)
|
|
let version = "3.3.0"
|
|
#elseif swift(>=3.2.3)
|
|
let version = "3.2.3"
|
|
#elseif swift(>=3.2.2)
|
|
let version = "3.2.2"
|
|
#elseif swift(>=3.2.1)
|
|
let version = "3.2.1"
|
|
#elseif swift(>=3.2.0)
|
|
let version = "3.2.0"
|
|
#elseif swift(>=3.1.1)
|
|
let version = "3.1.1"
|
|
#elseif swift(>=3.1.0)
|
|
let version = "3.1.0"
|
|
#elseif swift(>=3.0.2)
|
|
let version = "3.0.2"
|
|
#elseif swift(>=3.0.1)
|
|
let version = "3.0.1"
|
|
#elseif swift(>=3.0.0)
|
|
let version = "3.0.0"
|
|
#endif
|
|
""")
|
|
func isString(token: SyntaxToken) -> Bool {
|
|
return token.type == SyntaxKind.string.rawValue
|
|
}
|
|
if let decl = file.structure.kinds().first(where: { $0.kind == SwiftDeclarationKind.varGlobal.rawValue }),
|
|
let token = file.syntaxMap.tokens(inByteRange: decl.byteRange).first(where: isString ) {
|
|
return .init(rawValue: file.contents.substring(from: token.offset + 1, length: token.length - 2))
|
|
}
|
|
|
|
return .three
|
|
}()
|
|
}
|