Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency aspect_rules_lint to v0.21.0 #4437

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 19, 2024

Mend Renovate

This PR contains the following updates:

Package Type Update Change
aspect_rules_lint http_archive minor v0.5.0 -> v0.21.0

Release Notes

aspect-build/rules_lint (aspect_rules_lint)

v0.21.0

Compare Source

Using Bzlmod with Bazel 6

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

### Next, follow the install instructions for
### - linting: https://github.com/aspect-build/rules_lint/blob/v0.21.0/docs/linting.md

### - formatting: https://github.com/aspect-build/rules_lint/blob/v0.21.0/docs/formatting.md

Using WORKSPACE

Paste this snippet into your file:

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "aspect_rules_lint",
    sha256 = "1e679b081750ca9cedad4f79e371ee5e14d9a157de8018661af9fe45879100b2",
    strip_prefix = "rules_lint-0.21.0",
    url = "https://github.com/aspect-build/rules_lint/releases/download/v0.21.0/rules_lint-v0.21.0.tar.gz",
)

### aspect_rules_lint depends on aspect_bazel_lib. Either 1.x or 2.x works.
http_archive(
    name = "aspect_bazel_lib",
    sha256 = "979667bb7276ee8fcf2c114c9be9932b9a3052a64a647e0dcaacfb9c0016f0a3",
    strip_prefix = "bazel-lib-2.4.1",
    url = "https://github.com/aspect-build/bazel-lib/releases/download/v2.4.1/bazel-lib-v2.4.1.tar.gz",
)
load("@​aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies")

### aspect_bazel_lib depends on bazel_skylib
aspect_bazel_lib_dependencies()

load(
    "@​aspect_rules_lint//format:repositories.bzl",

### Fetch additional formatter binaries you need:
    "fetch_java_format",
    "fetch_ktfmt",
    "fetch_swiftformat",
    "rules_lint_dependencies",
)

rules_lint_dependencies()

fetch_java_format()

fetch_ktfmt()

fetch_swiftformat()

load("@​aspect_rules_lint//lint:pmd.bzl", "fetch_pmd")

fetch_pmd()

load("@​aspect_rules_lint//lint:ruff.bzl", "fetch_ruff")

fetch_ruff()

load("@​aspect_rules_lint//lint:vale.bzl", "fetch_vale")

fetch_vale()

load("@​aspect_rules_lint//lint:ktlint.bzl", "fetch_ktlint")

fetch_ktlint()

########################

### Optional: multitool provides defaults for some tools such as yamlfmt
### If you do not set up multitool, you will be forced to either set an explicit tool

### for languages that have a default, or set explicit False value, e.g.
###   format_multirun(jsonnet = False)
load("@​rules_multitool//multitool:multitool.bzl", "multitool")

multitool(
    name = "multitool",
    lockfiles = [
        "@​aspect_rules_lint//format:multitool.lock.json",
        "@​aspect_rules_lint//lint:multitool.lock.json",
    ],
)

What's Changed

New Contributors

Full Changelog: aspect-build/rules_lint@v0.20.0...v0.21.0

v0.20.0

Compare Source

Using Bzlmod with Bazel 6

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

### Next, follow the install instructions for
### - linting: https://github.com/aspect-build/rules_lint/blob/v0.20.0/docs/linting.md

### - formatting: https://github.com/aspect-build/rules_lint/blob/v0.20.0/docs/formatting.md

Using WORKSPACE

Paste this snippet into your file:

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "aspect_rules_lint",
    sha256 = "572be80134ce36b0ad17229a37945efdfa1381468ae804008a1a16dc35686a05",
    strip_prefix = "rules_lint-0.20.0",
    url = "https://github.com/aspect-build/rules_lint/releases/download/v0.20.0/rules_lint-v0.20.0.tar.gz",
)

### aspect_rules_lint depends on aspect_bazel_lib. Either 1.x or 2.x works.
http_archive(
    name = "aspect_bazel_lib",
    sha256 = "979667bb7276ee8fcf2c114c9be9932b9a3052a64a647e0dcaacfb9c0016f0a3",
    strip_prefix = "bazel-lib-2.4.1",
    url = "https://github.com/aspect-build/bazel-lib/releases/download/v2.4.1/bazel-lib-v2.4.1.tar.gz",
)
load("@​aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies")

### aspect_bazel_lib depends on bazel_skylib
aspect_bazel_lib_dependencies()

load(
    "@​aspect_rules_lint//format:repositories.bzl",

### Fetch additional formatter binaries you need:
    "fetch_java_format",
    "fetch_ktfmt",
    "fetch_swiftformat",
    "rules_lint_dependencies",
)

rules_lint_dependencies()

fetch_java_format()

fetch_ktfmt()

fetch_swiftformat()

load("@​aspect_rules_lint//lint:pmd.bzl", "fetch_pmd")

fetch_pmd()

load("@​aspect_rules_lint//lint:ruff.bzl", "fetch_ruff")

fetch_ruff()

load("@​aspect_rules_lint//lint:vale.bzl", "fetch_vale")

fetch_vale()

load("@​aspect_rules_lint//lint:ktlint.bzl", "fetch_ktlint")

fetch_ktlint()

########################

### Optional: multitool provides defaults for some tools such as yamlfmt
### If you do not set up multitool, you will be forced to either set an explicit tool

### for languages that have a default, or set explicit False value, e.g.
###   format_multirun(jsonnet = False)
load("@​rules_multitool//multitool:multitool.bzl", "multitool")

multitool(
    name = "multitool",
    lockfiles = [
        "@​aspect_rules_lint//format:multitool.lock.json",
        "@​aspect_rules_lint//lint:multitool.lock.json",
    ],
)

What's Changed

New Contributors

Full Changelog: aspect-build/rules_lint@v0.18.0...v0.20.0

v0.19.0

Compare Source

Using Bzlmod with Bazel 6

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

### Next, follow the install instructions for
### - linting: https://github.com/aspect-build/rules_lint/blob/v0.19.0/docs/linting.md

### - formatting: https://github.com/aspect-build/rules_lint/blob/v0.19.0/docs/formatting.md

Using WORKSPACE

Paste this snippet into your file:

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "aspect_rules_lint",
    sha256 = "5c9ec682c4d25bd05a1140e0a85d120eb379d46e35bf5770c83ffaf0db680c3c",
    strip_prefix = "rules_lint-0.19.0",
    url = "https://github.com/aspect-build/rules_lint/releases/download/v0.19.0/rules_lint-v0.19.0.tar.gz",
)

### aspect_rules_lint depends on aspect_bazel_lib. Either 1.x or 2.x works.
http_archive(
    name = "aspect_bazel_lib",
    sha256 = "979667bb7276ee8fcf2c114c9be9932b9a3052a64a647e0dcaacfb9c0016f0a3",
    strip_prefix = "bazel-lib-2.4.1",
    url = "https://github.com/aspect-build/bazel-lib/releases/download/v2.4.1/bazel-lib-v2.4.1.tar.gz",
)
load("@​aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies")

### aspect_bazel_lib depends on bazel_skylib
aspect_bazel_lib_dependencies()

load(
    "@​aspect_rules_lint//format:repositories.bzl",

### Fetch additional formatter binaries you need:
    "fetch_java_format",
    "fetch_ktfmt",
    "fetch_swiftformat",
    "rules_lint_dependencies",
)

rules_lint_dependencies()

fetch_java_format()

fetch_ktfmt()

fetch_swiftformat()

load("@​aspect_rules_lint//lint:pmd.bzl", "fetch_pmd")

fetch_pmd()

load("@​aspect_rules_lint//lint:ruff.bzl", "fetch_ruff")

### https://github.com/astral-sh/ruff/pull/8631#issuecomment-2022746290
fetch_ruff("v0.3.2")

load("@​aspect_rules_lint//lint:vale.bzl", "fetch_vale")

fetch_vale()

load("@​aspect_rules_lint//lint:ktlint.bzl", "fetch_ktlint")

fetch_ktlint()

########################

### Optional: multitool provides defaults for some tools such as yamlfmt
### If you do not set up multitool, you will be forced to either set an explicit tool

### for languages that have a default, or set explicit False value, e.g.
###   format_multirun(jsonnet = False)
load("@​rules_multitool//multitool:multitool.bzl", "multitool")

multitool(
    name = "multitool",
    lockfiles = [
        "@​aspect_rules_lint//format:multitool.lock.json",
        "@​aspect_rules_lint//lint:multitool.lock.json",
    ],
)

What's Changed

New Contributors

Full Changelog: aspect-build/rules_lint@v0.18.0...v0.19.0

v0.18.0

Compare Source

Using Bzlmod with Bazel 6

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

### Next, follow the install instructions for
### - linting: https://github.com/aspect-build/rules_lint/blob/v0.18.0/docs/linting.md

### - formatting: https://github.com/aspect-build/rules_lint/blob/v0.18.0/docs/formatting.md

Using WORKSPACE

Paste this snippet into your file:

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "aspect_rules_lint",
    sha256 = "a3e07f07216b6b406d2297c273e7af4cc8096b43288952020cdf4dc12f45b5e8",
    strip_prefix = "rules_lint-0.18.0",
    url = "https://github.com/aspect-build/rules_lint/releases/download/v0.18.0/rules_lint-v0.18.0.tar.gz",
)

### aspect_rules_lint depends on aspect_bazel_lib. Either 1.x or 2.x works.
http_archive(
    name = "aspect_bazel_lib",
    sha256 = "979667bb7276ee8fcf2c114c9be9932b9a3052a64a647e0dcaacfb9c0016f0a3",
    strip_prefix = "bazel-lib-2.4.1",
    url = "https://github.com/aspect-build/bazel-lib/releases/download/v2.4.1/bazel-lib-v2.4.1.tar.gz",
)
load("@​aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies")

### aspect_bazel_lib depends on bazel_skylib
aspect_bazel_lib_dependencies()

load(
    "@​aspect_rules_lint//format:repositories.bzl",

### Fetch additional formatter binaries you need:
    "fetch_java_format",
    "fetch_ktfmt",
    "fetch_swiftformat",
    "rules_lint_dependencies",
)

rules_lint_dependencies()

fetch_java_format()

fetch_ktfmt()

fetch_swiftformat()

load("@​aspect_rules_lint//lint:pmd.bzl", "fetch_pmd")

fetch_pmd()

load("@​aspect_rules_lint//lint:ruff.bzl", "fetch_ruff")

### https://github.com/astral-sh/ruff/pull/8631#issuecomment-2022746290
fetch_ruff("v0.3.2")

load("@​aspect_rules_lint//lint:vale.bzl", "fetch_vale")

fetch_vale()

########################

### Optional: multitool provides defaults for some tools such as yamlfmt
### If you do not set up multitool, you will be forced to either set an explicit tool

### for languages that have a default, or set explicit False value, e.g.
###   format_multirun(jsonnet = False)
load("@​rules_multitool//multitool:multitool.bzl", "multitool")

multitool(
    name = "multitool",
    lockfiles = [
        "@​aspect_rules_lint//format:multitool.lock.json",
        "@​aspect_rules_lint//lint:multitool.lock.json",
    ],
)

What's Changed

Full Changelog: aspect-build/rules_lint@v0.17.0...v0.18.0

v0.17.0

Compare Source

Using Bzlmod with Bazel 6

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

### Next, follow the install instructions for
### - linting: https://github.com/aspect-build/rules_lint/blob/v0.17.0/docs/linting.md

### - formatting: https://github.com/aspect-build/rules_lint/blob/v0.17.0/docs/formatting.md

Using WORKSPACE

Paste this snippet into your file:

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "aspect_rules_lint",
    sha256 = "e8b26aab8d587e596d1463545f799a601edfb5f31b84db3f39a751f03407e2e5",
    strip_prefix = "rules_lint-0.17.0",
    url = "https://github.com/aspect-build/rules_lint/releases/download/v0.17.0/rules_lint-v0.17.0.tar.gz",
)

### aspect_rules_lint depends on aspect_bazel_lib. Either 1.x or 2.x works.
http_archive(
    name = "aspect_bazel_lib",
    sha256 = "979667bb7276ee8fcf2c114c9be9932b9a3052a64a647e0dcaacfb9c0016f0a3",
    strip_prefix = "bazel-lib-2.4.1",
    url = "https://github.com/aspect-build/bazel-lib/releases/download/v2.4.1/bazel-lib-v2.4.1.tar.gz",
)
load("@​aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies")

### aspect_bazel_lib depends on bazel_skylib
aspect_bazel_lib_dependencies()

load(
    "@​aspect_rules_lint//format:repositories.bzl",

### Fetch additional formatter binaries you need:
    "fetch_java_format",
    "fetch_ktfmt",
    "fetch_pmd",
    "fetch_swiftformat",
    "rules_lint_dependencies",
)

rules_lint_dependencies()

fetch_pmd()

fetch_java_format()

fetch_ktfmt()

fetch_swiftformat()

load("@​aspect_rules_lint//lint:ruff.bzl", "fetch_ruff")

### https://github.com/astral-sh/ruff/pull/8631#issuecomment-2022746290
fetch_ruff("v0.3.2")

load("@​aspect_rules_lint//lint:golangci-lint.bzl", "fetch_golangci_lint")

fetch_golangci_lint()

load("@​aspect_rules_lint//lint:shellcheck.bzl", "fetch_shellcheck")

fetch_shellcheck()

load("@​aspect_rules_lint//lint:vale.bzl", "fetch_vale")

fetch_vale()

########################

### Optional: multitool provides defaults for some tools such as yamlfmt
### If you do not set up multitool, you will be forced to either set an explicit tool

### for languages that have a default, or set explicit False value, e.g.
###   format_multirun(jsonnet = False)
load("@​rules_multitool//multitool:multitool.bzl", "multitool")

multitool(
    name = "multitool",
    lockfile = "@​aspect_rules_lint//format:multitool.lock.json",
)

What's Changed

Full Changelog: aspect-build/rules_lint@v0.16.0...v0.17.0

v0.16.0

Compare Source

Using Bzlmod with Bazel 6

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

### Next, follow the install instructions for
### - linting: https://github.com/aspect-build/rules_lint/blob/v0.16.0/docs/linting.md

### - formatting: https://github.com/aspect-build/rules_lint/blob/v0.16.0/docs/formatting.md

Using WORKSPACE

Paste this snippet into your file:

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "aspect_rules_lint",
    sha256 = "140ae8a51758d5cdec43d97ccf94b4069a571347f0919e606debcd57e62ac745",
    strip_prefix = "rules_lint-0.16.0",
    url = "https://github.com/aspect-build/rules_lint/releases/download/v0.16.0/rules_lint-v0.16.0.tar.gz",
)

### aspect_rules_lint depends on aspect_bazel_lib. Either 1.x or 2.x works.
http_archive(
    name = "aspect_bazel_lib",
    sha256 = "979667bb7276ee8fcf2c114c9be9932b9a3052a64a647e0dcaacfb9c0016f0a3",
    strip_prefix = "bazel-lib-2.4.1",
    url = "https://github.com/aspect-build/bazel-lib/releases/download/v2.4.1/bazel-lib-v2.4.1.tar.gz",
)
load("@​aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies")

### aspect_bazel_lib depends on bazel_skylib
aspect_bazel_lib_dependencies()

load(
    "@​aspect_rules_lint//format:repositories.bzl",

### Fetch additional formatter binaries you need:
    "fetch_java_format",
    "fetch_ktfmt",
    "fetch_pmd",
    "fetch_swiftformat",
    "rules_lint_dependencies",
)

rules_lint_dependencies()

fetch_pmd()

fetch_java_format()

fetch_ktfmt()

fetch_swiftformat()

load("@​aspect_rules_lint//lint:ruff.bzl", "fetch_ruff")

### https://github.com/astral-sh/ruff/pull/8631#issuecomment-2022746290
fetch_ruff("v0.3.2")

load("@​aspect_rules_lint//lint:golangci-lint.bzl", "fetch_golangci_lint")

fetch_golangci_lint()

load("@​aspect_rules_lint//lint:shellcheck.bzl", "fetch_shellcheck")

fetch_shellcheck()

load("@​aspect_rules_lint//lint:vale.bzl", "fetch_vale")

fetch_vale()

########################

### Optional: multitool provides defaults for some tools such as yamlfmt
### If you do not set up multitool, you will be forced to either set an explicit tool

### for languages that have a default, or set explicit False value, e.g.
###   format_multirun(jsonnet = False)
load("@​rules_multitool//multitool:multitool.bzl", "multitool")

multitool(
    name = "multitool",
    lockfile = "@​aspect_rules_lint//format:multitool.lock.json",
)

What's Changed

New Contributors

Full Changelog: aspect-build/rules_lint@v0.15.0...v0.16.0

v0.15.0

Compare Source

Using Bzlmod with Bazel 6

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

### Next, follow the install instructions for
### - linting: https://github.com/aspect-build/rules_lint/blob/v0.15.0/docs/linting.md

### - formatting: https://github.com/aspect-build/rules_lint/blob/v0.15.0/docs/formatting.md

Using WORKSPACE

Paste this snippet into your file:

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "aspect_rules_lint",
    sha256 = "e5be0ba6935d2749790a19314088692e8b51f53d15f8030df0a18734988d74b2",
    strip_prefix = "rules_lint-0.15.0",
    url = "https://github.com/aspect-build/rules_lint/releases/download/v0.15.0/rules_lint-v0.15.0.tar.gz",
)

### aspect_rules_lint depends on aspect_bazel_lib. Either 1.x or 2.x works.
http_archive(
    name = "aspect_bazel_lib",
    sha256 = "979667bb7276ee8fcf2c114c9be9932b9a3052a64a647e0dcaacfb9c0016f0a3",
    strip_prefix = "bazel-lib-2.4.1",
    url = "https://github.com/aspect-build/bazel-lib/releases/download/v2.4.1/bazel-lib-v2.4.1.tar.gz",
)
load("@​aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies")

### aspect_bazel_lib depends on bazel_skylib
aspect_bazel_lib_dependencies()

load(
    "@​aspect_rules_lint//format:repositories.bzl",

### Fetch additional formatter binaries you need:
    "fetch_java_format",
    "fetch_ktfmt",
    "fetch_pmd",
    "fetch_swiftformat",
    "fetch_terraform",
    "rules_lint_dependencies",
)

rules_lint_dependencies()

fetch_pmd()

fetch_terraform()

fetch_java_format()

fetch_ktfmt()

fetch_swiftformat()

load("@​aspect_rules_lint//lint:ruff.bzl", "fetch_ruff")

### https://github.com/astral-sh/ruff/pull/8631#issuecomment-2022746290
fetch_ruff("v0.3.2")

load("@​aspect_rules_lint//lint:golangci-lint.bzl", "fetch_golangci_lint")

fetch_golangci_lint()

load("@​aspect_rules_lint//lint:shellcheck.bzl", "fetch_shellcheck")

fetch_shellcheck()

load("@​aspect_rules_lint//lint:vale.bzl", "fetch_vale")

fetch_vale()

########################

### Optional: multitool provides defaults for some tools such as yamlfmt
### If you do not set up multitool, you will be forced to either set an explicit tool

### for languages that have a default, or set explicit False value, e.g.
###   format_multirun(jsonnet = False)
load("@​rules_multitool//multitool:multitool.bzl", "multitool")

multitool(
    name = "multitool",
    lockfile = "@​aspect_rules_lint//format:multitool.lock.json",
)

What's Changed

Full Changelog: aspect-build/rules_lint@v0.14.2...v0.15.0

v0.14.2

Compare Source

BREAKING CHANGES

Getting ready for 1.0 so a bunch of breaking changes have landed since v0.13.

  • Many renames: Public API symbol symbols now prefixed with lint_
  • WORKSPACE users should check the snippet below:
    • must now call rules_lint_dependencies()
    • must either install rules_multitool, or set some languages to False in call to format_multirun
  • multi_formatter_binary renamed to format_multirun
    • attribute protobuf renamed to protocol_buffer

Using Bzlmod with Bazel 6

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

### Next, follow the install instructions for
### - linting: https://github.com/aspect-build/rules_lint/blob/v0.14.2/docs/linting.md

### - formatting: https://github.com/aspect-build/rules_lint/blob/v0.14.2/docs/formatting.md

Using WORKSPACE

Paste this snippet into your file:

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "aspect_rules_lint",
    sha256 = "07dd6258894757e44db1a5dd3650731c1432cad7795afdaa6d945d4ba3b84f68",
    strip_prefix = "rules_lint-0.14.2",
    url = "https://github.com/aspect-build/rules_lint/releases/download/v0.14.2/rules_lint-v0.14.2.tar.gz",
)

### aspect_rules_lint depends on aspect_bazel_lib. Either 1.x or 2.x works.
http_archive(
    name = "aspect_bazel_lib",
    sha256 = "979667bb7276ee8fcf2c114c9be9932b9a3052a64a647e0dcaacfb9c0016f0a3",
    strip_prefix = "bazel-lib-2.4.1",
    url = "https://github.com/aspect-build/bazel-lib/releases/download/v2.4.1/bazel-lib-v2.4.1.tar.gz",
)
load("@​aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies")

### aspect_bazel_lib depends on bazel_skylib
aspect_bazel_lib_dependencies()

load(
    "@​aspect_rules_lint//format:repositories.bzl",

### Fetch additional formatter binaries you need:
    "fetch_java_format",
    "fetch_ktfmt",
    "fetch_pmd",
    "fetch_swiftformat",
    "fetch_terraform",
    "rules_lint_dependencies",
)

rules_lint_dependencies()

fetch_pmd()

fetch_terraform()

fetch_java_format()

fetch_ktfmt()

fetch_swiftformat()

load("@​aspect_rules_lint//lint:ruff.bzl", "fetch_ruff")

fetch_ruff()

load("@​aspect_rules_lint//lint:golangci-lint.bzl", "fetch_golangci_lint")

fetch_golangci_lint()

load("@​aspect_rules_lint//lint:shellcheck.bzl", "fetch_shellcheck")

fetch_shellcheck()

load("@​aspect_rules_lint//lint:vale.bzl", "fetch_vale")

fetch_vale()

########################

### Optional: multitool provides defaults for some tools such as yamlfmt
### If you do not set up multitool, you will be forced to either set an explicit tool

### for languages that have a default, or set explicit False value, e.g.
###   format_multirun(jsonnet = False)
load("@​rules_multitool//multitool:multitool.bzl", "multitool")

multitool(
    name = "multitool",
    lockfile = "@​aspect_rules_lint//format:multitool.lock.json",
)

What's Changed

Full Changelog: aspect-build/rules_lint@v0.14.1...v0.14.2

v0.14.1

Compare Source

Broken due to https://github.com/aspect-build/rules_lint/issues/169, do not use

v0.14.0

Compare Source

Broken due to https://github.com/aspect-build/rules_lint/issues/169, do not use

v0.13.0

Compare Source

Using Bzlmod with Bazel 6

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

### Next, follow the install instructions for
### - linting: https://github.com/aspect-build/rules_lint/blob/v0.13.0/docs/linting.md

### - formatting: https://github.com/aspect-build/rules_lint/blob/v0.13.0/docs/formatting.md

Using WORKSPACE

Paste this snippet into your file:

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "aspect_rules_lint",
    sha256 = "c0824de8400f1e271c5568fc47581e165b2132f9d21691fcfefe8bf89ad413bd",
    strip_prefix = "rules_lint-0.13.0",
    url = "https://github.com/aspect-build/rules_lint/releases/download/v0.13.0/rules_lint-v0.13.0.tar.gz",
)

### aspect_rules_lint depends on aspect_bazel_lib. Either 1.x or 2.x works.
http_archive(
    name = "aspect_bazel_lib",
    sha256 = "979667bb7276ee8fcf2c114c9be9932b9a3052a64a647e0dcaacfb9c0016f0a3",
    strip_prefix = "bazel-lib-2.4.1",
    url = "https://github.com/aspect-build/bazel-lib/releases/download/v2.4.1/bazel-lib-v2.4.1.tar.gz",
)
load("@​aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies")

### aspect_bazel_lib depends on bazel_skylib
aspect_bazel_lib_dependencies()

### Use whichever formatter binaries you need:
load(
    "@​aspect_rules_lint//format:repositories.bzl",
    "fetch_gofumpt",
    "fetch_java_format",
    "fetch_jsonnet",
    "fetch_ktfmt",
    "fetch_pmd",
    "fetch_shfmt",
    "fetch_swiftformat",
    "fetch_terraform",
    "fetch_yamlfmt",
)

fetch_gofumpt()

fetch_pmd()

fetch_jsonnet()

fetch_terraform()

fetch_java_format()

fetch_ktfmt()

fetch_shfmt()

fetch_swiftformat()

fetch_yamlfmt()

load("@​aspect_rules_lint//lint:ruff.bzl", "fetch_ruff")

fetch_ruff()

load("@​aspect_rules_lint//lint:golangci-lint.bzl", "fetch_golangci_lint")

fetch_golangci_lint()

load("@​aspect_rules_lint//lint:shellcheck.bzl", "fetch_shellcheck")

fetch_shellcheck()

load("@​aspect_rules_lint//lint:vale.bzl", "fetch_vale")

fetch_vale()

What's Changed

New Contributors

Full Changelog: aspect-build/rules_lint@v0.12.0...v0.13.0

v0.12.0

Compare Source

Using Bzlmod with Bazel 6

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

### Next, follow the install instructions for
### - linting: https://github.com/aspect-build/rules_lint/blob/v0.12.0/docs/linting.md

### - formatting: https://github.com/aspect-build/rules_lint/blob/v0.12.0/docs/formatting.md

Using WORKSPACE

Paste this snippet into your file:

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "aspect_rules_lint",
    sha256 = "41fad363f11ccab46a244f93f8ccb0f442bc235e606d2fad87801987ad0759b1",
    strip_prefix = "rules_lint-0.12.0",
    url = "https://github.com/aspect-build/rules_lint/releases/download/v0.12.0/rules_lint-v0.12.0.tar.gz",
)

### aspect_rules_lint depends on aspect_bazel_lib. Either 1.x or 2.x works.
http_archive(
    name = "aspect_bazel_lib",
    sha256 = "979667bb7276ee8fcf2c114c9be9932b9a3052a64a647e0dcaacfb9c0016f0a3",
    strip_prefix = "bazel-lib-2.4.1",
    url = "https://github.com/aspect-build/bazel-lib/releases/download/v2.4.1/bazel-lib-v2.4.1.tar.gz",
)
load("@​aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies")

### aspect_bazel_lib depends on bazel_skylib
aspect_bazel_lib_dependencies()

### Use whichever formatter binaries you need:
load(
    "@​aspect_rules_lint//format:repositories.bzl",
    "fetch_gofumpt",
    "fetch_java_format",
    "fetch_jsonnet",
    "fetch_ktfmt",
    "fetch_pmd",
    "fetch_shfmt",
    "fetch_swiftformat",
    "fetch_terraform",
)

fetch_gofumpt()

fetch_pmd()

fetch_jsonnet()

fetch_terraform()

fetch_java_format()

fetch_ktfmt()

fetch_shfmt()

fetch_swiftformat()

load("@​aspect_rules_lint//lint:ruff.bzl", "fetch_ruff")

fetch_ruff()

load("@​aspect_rules_lint//lint:golangci-lint.bzl", "fetch_golangci_lint")

fetch_golangci_lint()

load("@​aspect_rules_lint//lint:shellcheck.bzl", "fetch_shellcheck")

fetch_shellcheck()

load("@​aspect_rules_lint//lint:vale.bzl", "fetch_vale")

fetch_vale()

What's Changed

Full Changelog: aspect-build/rules_lint@v0.11.1...v0.12.0

v0.11.1

Compare Source

Using Bzlmod with Bazel 6

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

### Next, follow the install instructions for
### - linting: https://github.com/aspect-build/rules_lint/blob/v0.11.1/docs/linting.md

### - formatting: https://github.com/aspect-build/rules_lint/blob/v0.11.1/docs/formatting.md

Using WORKSPACE

Paste this snippet into your file:

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "aspect_rules_lint",
    sha256 = "6005ba6868e471afbd4bffdb92236679a9755239f2b2fa87922644aa9ba5ded0",
    strip_prefix = "rules_lint-0.11.1",
    url = "https://github.com/aspect-build/rules_lint/releases/download/v0.11.1/rules_lint-v0.11.1.tar.gz",
)

### aspect_rules_lint depends on aspect_bazel_lib. Either 1.x or 2.x works.
http_archive(
    name = "aspect_bazel_lib",
    sha256 = "979667bb7276ee8fcf2c114c9be9932b9a3052a64a647e0dcaacfb9c0016f0a3",
    strip_prefix = "bazel-lib-2.4.1",
    url = "https://github.com/aspect-build/bazel-lib/releases/download/v2.4.1/bazel-lib-v2.4.1.tar.gz",
)
load("@​aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies")

### aspect_bazel_lib depends on bazel_skylib
aspect_bazel_lib_dependencies()

### Use whichever formatter binaries you need:
load(
    "@​aspect_rules_lint//format:repositories.bzl",
    "fetch_gofumpt",
    "fetch_java_format",
    "fetch_jsonnet",
    "fetch_ktfmt",
    "fetch_pmd",
    "fetch_shfmt",
    "fetch_swiftformat",
    "fetch_terraform",
)

fetch_gofumpt()

fetch_pmd()

fetch_jsonnet()

fetch_terraform()

fetch_java_format()

fetch_ktfmt()

fetch_shfmt()

fetch_swiftformat()

load("@​aspect_rules_lint//lint:ruff.bzl", "fetch_ruff")

fetch_ruff()

load("@​aspect_rules_lint//lint:golangci-lint.bzl", "fetch_golangci_lint")

fetch_golangci_lint()

load("@​aspect_rules_lint//lint:shellcheck.bzl", "fetch_shellcheck")

fetch_shellcheck()

What's Changed

New Contributors

Full Changelog: aspect-build/rules_lint@v0.11.0...v0.11.1

v0.11.0

Compare Source

Using Bzlmod with Bazel 6

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

### Next, follow the install instructions for
### - linting: https://github.com/aspect-build/rules_lint/blob/v0.11.0/docs/linting.md

### - formatting: https://github.com/aspect-build/rules_lint/blob/v0.11.0/docs/formatting.md

Using WORKSPACE

Paste this snippet into your file:

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "aspect_rules_lint",
    sha256 = "98bed74aff6498ea9b58ff36db27a952c7a1b53764171c5d0d29ef0c61ffc4fb",
    strip_prefix = "rules_lint-0.11.0",
    url = "https://github.com/aspect-build/rules_lint/releases/download/v0.11.0/rules_lint-v0.11.0.tar.gz",
)

### Use whichever formatter binaries you need:
load(
    "@​aspect_rules_lint//format:repositories.bzl",
    "fetch_gofumpt",
    "fetch_java_format",
    "fetch_jsonnet",
    "fetch_ktfmt",
    "fetch_pmd",
    "fetch_shfmt",
    "fetch_swiftformat",
    "fetch_terraform",
)

fetch_gofumpt()

fetch_pmd()

fetch_jsonnet()

fetch_terraform()

fetch_java_format()

fetch_ktfmt()

fetch_shfmt()

fetch_swiftformat()

load("@​aspect_rules_lint//lint:ruff.bzl", "fetch_ruff")

fetch_ruff()

load("@​aspect_rules_lint//lint:golangci-lint.bzl", "fetch_golangci_lint")

fetch_golangci_lint()

load("@​aspect_rules_lint//lint:shellcheck.bzl", "fetch_shellcheck")

fetch_shellcheck()

What's Changed

New Contributors

Full Changelog: aspect-build/rules_lint@v0.10.0...v0.11.0

v0.10.0

Compare Source

🔴 This release has a critical bug #​122 : running the formatter with no arguments doesn't recurse into subfolders properly.
Please upgrade.

Using Bzlmod with Bazel 6

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

### Next, follow the install instructions for
### - linting: https://github.com/aspect-build/rules_lint/blob/v0.10.0/docs/linting.md

### - formatting: https://github.com/aspect-build/rules_lint/blob/v0.10.0/docs/formatting.md

Using WORKSPACE

Paste this snippet into your file:

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "aspect_rules_lint",
    sha256 = "1cc2c95bffebbd8128cd46034002fbc82cc2b2df180bd69168ca771c94a5620d",
    strip_prefix = "rules_lint-0.10.0",
    url = "https://github.com/aspect-build/rules_lint/releases/download/v0.10.0/rules_lint-v0.10.0.tar.gz",
)

### Use whichever formatter binaries you need:
load(
    "@​aspect_rules_lint//format:repositories.bzl",
    "fetch_java_format",
    "fetch_jsonnet",
    "fetch_ktfmt",
    "fetch_pmd",
    "fetch_shfmt",
    "fetch_swiftformat",
    "fetch_terraform",
)

fetch_pmd()

fetch_jsonnet()

fetch_terraform()

fetch_java_format()

fetch_ktfmt()

fetch_shfmt()

fetch_swiftformat()

load("@​aspect_rules_lint//lint:ruff.bzl", "fetch_ruff")

fetch_ruff()

load("@​aspect_rules_lint//lint:golangci-lint.bzl", "fetch_golangci_lint")

fetch_golangci_lint()

load("@​aspect_rules_lint//lint:shellcheck.bzl", "fetch_shellcheck")

fetch_shellcheck()

What's Changed

Full Changelog: aspect-build/rules_lint@v0.9.1...v0.10.0

v0.9.1

Compare Source

Note that the v0.9.0 tag was placed at the wrong commit, so that release was skipped.

Using Bzlmod


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/aspect_rules_lint-0.x branch 11 times, most recently from 367faaa to deead1d Compare May 20, 2024 05:35
@renovate renovate bot force-pushed the renovate/aspect_rules_lint-0.x branch 5 times, most recently from 3b152b9 to b1634a5 Compare June 18, 2024 14:20
@renovate renovate bot force-pushed the renovate/aspect_rules_lint-0.x branch 3 times, most recently from c556a66 to c607fb2 Compare July 5, 2024 16:36
@renovate renovate bot force-pushed the renovate/aspect_rules_lint-0.x branch from c607fb2 to bda67fc Compare July 7, 2024 03:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants