Skip to content

v0.8.1.2

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 10 Oct 20:12
· 9 commits to master since this release
26bdcd1

Using Bzlmod with Bazel 6

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "rules_detekt", version = "0.8.1.2")

Using WORKSPACE

Paste this snippet into your file:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "rules_detekt",
    sha256 = "a5ae68f2487568d2c4145a8fc45da096edaaaed46487fb3d108ffe24b31d99da",
    strip_prefix = "bazel_rules_detekt-0.8.1.2",
    url = "https://github.com/buildfoundation/bazel_rules_detekt/releases/download/v0.8.1.2/bazel_rules_detekt-v0.8.1.2.tar.gz",
)

What's Changed

Full Changelog: v0.8.1.1...v0.8.1.2