Skip to content

0.3.1

Compare
Choose a tag to compare
@github-actions github-actions released this 10 Jan 07:51
· 3 commits to main since this release

Using Bzlmod with Bazel 6

NOTE: bzlmod support is still beta. APIs subject to change.

Add to your MODULE.bazel file:

bazel_dep(name = "rules_shellcheck", version = "0.3.1")

Legacy: using WORKSPACE

Paste this snippet into your WORKSPACE file:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "rules_shellcheck",
    sha256 = "7d32464dc52376bd5c785754e4b4ffcf48335075708e4accb64c508a83eea3eb",
    url = "https://github.com/aignas/rules_shellcheck/releases/download/0.3.1/rules_shellcheck-0.3.1.tar.gz",
)

load("@rules_shellcheck//:deps.bzl", "shellcheck_dependencies")

shellcheck_dependencies()

Full Changelog: 0.3.0...0.3.1