🧹 Enable linting with Xcode 13 beta 3

This commit is contained in:
Chris Araman 2021-07-26 14:49:39 -07:00
parent 6cb7a77890
commit 999158ef23
No known key found for this signature in database
GPG key ID: BB4499D9E11B61E0

View file

@ -70,7 +70,11 @@ let package = Package(
swiftLanguageVersions: [.v5]
)
#if compiler(>=5.4)
#if compiler(>=5.5)
package.dependencies += [
.package(url: "https://github.com/apple/swift-format", .branch("swift-5.5-branch"))
]
#elseif compiler(>=5.4)
package.dependencies += [
.package(url: "https://github.com/apple/swift-format", .branch("swift-5.4-branch"))
]