0.52.2
版本发布时间: 2023-05-12 23:02:07
realm/SwiftLint最新发布版本:0.57.0(2024-09-09 00:02:39)
Breaking
- None.
Experimental
- None.
Enhancements
- Exclude simple assignments of the form
self.x = x
from being reported by theredundant_self_in_closure
rule.
SimplyDanny #4988
Bug Fixes
-
Make
unhandled_throwing_task
opt-in instead of enabled by default. The rule is still prone to false positives at this point, so this makes enabling the rule a conscious decision by end-users.
JP Simard #4987 -
Fix
unhandled_throwing_task
false positives when theTask
is returned or where the throwing code is handled in aResult
initializer.
JP Simard #4987
Using Bazel
With bzlmod:
bazel_dep(name = "swiftlint", version = "0.52.2", 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 = "2b95a592304bc377aa29d92683618376975f93553be62f132de7424819f6fc4a",
url = "https://github.com/realm/SwiftLint/releases/download/0.52.2/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
1、 bazel.tar.gz 411.74KB
2、 bazel.tar.gz.sha256 116B
3、 portable_swiftlint.zip 8.6MB
4、 SwiftLint.pkg 8.6MB
5、 SwiftLintBinary-macos.artifactbundle.zip 8.6MB
6、 swiftlint_linux.zip 33.19MB