0.3.1
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",
strip_prefix = "apple_rules_lint-0.3.1",
sha256 = "119ecfbecc1befa66d1787b33f39c1250023f5546c73915b2181913628edf21b",
url = "https://github.com/apple/apple_rules_lint/archive/refs/tags/0.3.1.tar.gz"
)
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",
})
What's Changed
Full Changelog: 0.2.0...0.3.1