Skip to content

0.1.0

Compare
Choose a tag to compare
@shs96c shs96c released this 09 Oct 17:11
· 25 commits to main since this release

Introducing apple_rules_lint

To use, please add the following to your WORKSPACE

http_archive(
    name = "apple_rules_lint",
    sha256 = "ece669d52998c7a0df2c2380f37edbf4ed8ebb1a03587ed1781dfbececef9b3d",
    urls = [
        "https://github.com/apple/apple_rules_lint/releases/download/0.1.0/apple_rules_lint-0.1.0.tar.gz",
    ],
)

load("@apple_rules_lint//lint:repositories.bzl", "lint_deps")

lint_deps()

load("@apple_rules_lint//lint:setup.bzl", "lint_setup")

# Add your linters here.
lint_setup({
#    "lint_example": "//:default_config",
})

It is strongly advised that apple_rules_lint is one of the first rulesets you load.