Breaking
- None.
Experimental
- None.
Enhancements
- Add a
--disable-sourcekitflag to thelintcommand to disable SourceKit when needed.
The environment variableSWIFTLINT_DISABLE_SOURCEKITcan still be used as well.
SimplyDanny
#6282
Bug Fixes
-
Retain
asyncinitializers in actors inasync_without_awaitrule.
SimplyDanny
#6423 -
Inform users about files being skipped due to impossible file system representation
instead of crashing.
SimplyDanny
#6419 -
Ignore
overridefunctions inasync_without_awaitrule.
SimplyDanny
#6416 -
Avoid infinite recursion for deeply nested symbolic links which is usually the case
innode_modulesdirectories managed bypnpm.
SimplyDanny
#6425 -
Fix false positive in
unneeded_escapingrule when an escaping closure is used in
a nested closure preceded by another closure.
SimplyDanny
#6410 -
Fix non-excluded bool literal in
optional_enum_case_namewhen used inside a tuple.
tristan-burnside-anz
Using Bazel
With bzlmod:
// Pending BCR update
bazel_dep(name = "swiftlint", version = "0.63.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 = "bbdde20024722af8813af317d2af051fd4b430b61332072bbccf7ab53825bb2a",
url = "https://github.com/realm/SwiftLint/releases/download/0.63.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