0.2.0
This release includes features to allow apple_rules_lint
to be used with bzlmod
To install:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "apple_rules_lint",
sha256 = "78223d7c8372d025fc377a17aca83961c3d9d4829bcbb9f12476cea212ea70ea",
strip_prefix = "apple_rules_lint-0.2.0",
url = "https://github.com/apple/apple_rules_lint/archive/0.2.0.zip",
)
load("@apple_rules_lint//lint:repositories.bzl", "lint_deps")
lint_deps()
load("@apple_rules_lint//lint:setup.bzl", "lint_setup")
lint_setup({
# Note: this is an example config!
"java-spotbugs": "//java:spotbugs-config",
})