Skip to content

0.3.0

Compare
Choose a tag to compare
@shs96c shs96c released this 27 Oct 10:27
· 13 commits to main since this release

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.0",
    sha256 = "d185f273993dfa64dcf1c4d4e3460eca5b21deecfc04d0388e63a9760b2f6789",
    url = "https://github.com/apple/apple_rules_lint/archive/refs/tags/0.3.0.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.0