mirror of
https://github.com/realm/SwiftLint.git
synced 2026-05-07 20:12:49 +00:00
a97718f4c6
To support this, we first must use an async entrypoint to the CLI, which we do by changing the lint and analyze commands to conform to `AsyncParsableCommand`. The in order to map over the closures with suspension points, we pull in CollectionConcurrencyKit as a new dependency. This change does not touch SwiftLintFramework, only the CLI target.
12 lines
278 B
INI
12 lines
278 B
INI
load(
|
|
"@build_bazel_rules_swift//swift:swift.bzl",
|
|
"swift_library",
|
|
)
|
|
|
|
swift_library(
|
|
name = "CollectionConcurrencyKit",
|
|
srcs = ["Sources/CollectionConcurrencyKit.swift"],
|
|
module_name = "CollectionConcurrencyKit",
|
|
visibility = ["//visibility:public"],
|
|
)
|