Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
SwiftLintBinary.artifactbundle.zip | 2025-01-16 | 40.9 MB | |
bazel.tar.gz | 2025-01-16 | 477.2 kB | |
bazel.tar.gz.sha256 | 2025-01-16 | 116 Bytes | |
portable_swiftlint.zip | 2025-01-16 | 11.0 MB | |
SwiftLint.pkg | 2025-01-16 | 11.0 MB | |
swiftlint_linux.zip | 2025-01-16 | 30.0 MB | |
0.58.2_ New Year_s Fresh Fold source code.tar.gz | 2025-01-16 | 832.2 kB | |
0.58.2_ New Year_s Fresh Fold source code.zip | 2025-01-16 | 1.2 MB | |
README.md | 2025-01-16 | 2.0 kB | |
Totals: 9 Items | 95.3 MB | 0 |
Breaking
- None.
Experimental
- None.
Enhancements
- None.
Bug Fixes
- Fix version being reported by the binary consumed from the Docker image.
SimplyDanny #5966
Using Bazel
With bzlmod:
// Pending BCR update
bazel_dep(name = "swiftlint", version = "0.58.2", repo_name = "SwiftLint")
Without bzlmod, put this in your WORKSPACE
:
WORKSPACE
:::python 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 = "3377c9115221a14a52fa7533c065e48d7de729114cc534c10dcf61036dc59807", url = "https://github.com/realm/SwiftLint/releases/download/0.58.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:
:::console
bazel run @SwiftLint//:swiftlint -- --help