Breaking
- None.
Experimental
- None.
Enhancements
- Clarify wording of
static_over_final_class
rule's violation message.
SimplyDanny
#5570
Bug Fixes
-
Fix Bazel build when
bzlmod
is not in use by adding transitive dependencies
explicitly.
SimplyDanny
#5568 -
Treat condionally activatable variable declarations and initializer as if
they were always active inunneeded_synthesized_initializer
rule to avoid
compilation issues when unexpected items are there after all.
SimplyDanny
#5574 -
Silence
unused_enumerated
rule when$0
in a closure is explicitly unpacked.
SimplyDanny
#5573 -
Remove redundant initializers in
unneeded_override
rule only when checking
initializers is actually enabled in the configuration.
SimplyDanny
#5571 -
Respect comments before opening brace in
opening_brace
rule when there is
one space before the brace after the comment. Everything else is still a
violation, yet the rewriter will not remove the comment anymore.
SimplyDanny
#5578
Using Bazel
With bzlmod:
// Pending BCR update
bazel_dep(name = "swiftlint", version = "0.55.1", repo_name = "SwiftLint")
Without bzlmod, put this in your WORKSPACE
:
WORKSPACE
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "build_bazel_rules_apple",
sha256 = "9e26307516c4d5f2ad4aee90ac01eb8cd31f9b8d6ea93619fc64b3cbc81b0944",
url = "https://github.com/bazelbuild/rules_apple/releases/download/2.2.0/rules_apple.2.2.0.tar.gz",
)
load(
"@build_bazel_rules_apple//apple:repositories.bzl",
"apple_rules_dependencies",
)
apple_rules_dependencies()
load(
"@build_bazel_rules_swift//swift:repositories.bzl",
"swift_rules_dependencies",
)
swift_rules_dependencies()
load(
"@build_bazel_rules_swift//swift:extras.bzl",
"swift_rules_extra_dependencies",
)
swift_rules_extra_dependencies()
http_archive(
name = "SwiftLint",
sha256 = "78220a0b97db39edb08ead8e663aef415915e7d6631ba39ef3cc69b39352f664",
url = "https://github.com/realm/SwiftLint/releases/download/0.55.1/bazel.tar.gz",
)
load("@SwiftLint//bazel:repos.bzl", "swiftlint_repos")
swiftlint_repos()
load("@SwiftLint//bazel:deps.bzl", "swiftlint_deps")
swiftlint_deps()
Then you can run SwiftLint in the current directory with this command:
bazel run @SwiftLint//:swiftlint -- --help