Closed renovate[bot] closed 1 month ago
Buildkite build #6267 is running...
All tests were cache hits
5 tests (100.0%) were fully cached saving 789ms.
All tests were cache hits
2 tests (100.0%) were fully cached saving 184ms.
All tests were cache hits
1 test (100.0%) was fully cached saving 9s.
All tests were cache hits
3 tests (100.0%) were fully cached saving 920ms.
All tests were cache hits
3 tests (100.0%) were fully cached saving 924ms.
All tests were cache hits
1 test (100.0%) was fully cached saving 27ms.
All tests were cache hits
1 test (100.0%) was fully cached saving 27ms.
All tests were cache hits
2 tests (100.0%) were fully cached saving 296ms.
All tests were cache hits
1 test (100.0%) was fully cached saving 112ms.
All tests were cache hits
3 tests (100.0%) were fully cached saving 254ms.
All tests were cache hits
1 test (100.0%) was fully cached saving 236ms.
All tests were cache hits
1 test (100.0%) was fully cached saving 81ms.
All tests were cache hits
1 test (100.0%) was fully cached saving 81ms.
All tests were cache hits
1 test (100.0%) was fully cached saving 504ms.
All tests were cache hits
40 tests (100.0%) were fully cached saving 2s.
All tests were cache hits
10 tests (100.0%) were fully cached saving 2s.
All tests were cache hits
10 tests (100.0%) were fully cached saving 2s.
All tests were cache hits
2 tests (100.0%) were fully cached saving 493ms.
All tests were cache hits
2 tests (100.0%) were fully cached saving 153ms.
All tests were cache hits
1 test (100.0%) was fully cached saving 413ms.
All tests were cache hits
1 test (100.0%) was fully cached saving 171ms.
This PR contains the following updates:
0.12.0
->1.0.2
v0.21.0
->v1.0.2
Release Notes
aspect-build/rules_lint (aspect_rules_lint)
### [`v1.0.2`](https://redirect.github.com/aspect-build/rules_lint/releases/tag/v1.0.2) [Compare Source](https://redirect.github.com/aspect-build/rules_lint/compare/v1.0.1...v1.0.2) #### Using Bzlmod with Bazel 6 1. Enable with `common --enable_bzlmod` in `.bazelrc`. 2. Add to your `MODULE.bazel` file: ```starlark bazel_dep(name = "aspect_rules_lint", version = "1.0.2") ### Next, follow the install instructions for ### - linting: https://github.com/aspect-build/rules_lint/blob/v1.0.2/docs/linting.md ### - formatting: https://github.com/aspect-build/rules_lint/blob/v1.0.2/docs/formatting.md ``` #### Using WORKSPACE Paste this snippet into your file: ```starlark load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "aspect_rules_lint", sha256 = "7d5feef9ad85f0ba78cc5757a9478f8fa99c58a8cabc1660d610b291dc242e9b", strip_prefix = "rules_lint-1.0.2", url = "https://github.com/aspect-build/rules_lint/releases/download/v1.0.2/rules_lint-v1.0.2.tar.gz", ) ### aspect_rules_lint depends on aspect_bazel_lib. http_archive( name = "aspect_bazel_lib", sha256 = "6d758a8f646ecee7a3e294fbe4386daafbe0e5966723009c290d493f227c390b", strip_prefix = "bazel-lib-2.7.7", url = "https://github.com/aspect-build/bazel-lib/releases/download/v2.7.7/bazel-lib-v2.7.7.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:checkstyle.bzl", "fetch_checkstyle") fetch_checkstyle() load("@aspect_rules_lint//lint:pmd.bzl", "fetch_pmd") fetch_pmd() 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 must provide these tools yourself 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 - Fix broken link in linting.md by [@mark-thm](https://redirect.github.com/mark-thm) in [https://github.com/aspect-build/rules_lint/pull/388](https://redirect.github.com/aspect-build/rules_lint/pull/388) - Use --diff when running ruff as check by [@TimotheusBachinger](https://redirect.github.com/TimotheusBachinger) in [https://github.com/aspect-build/rules_lint/pull/386](https://redirect.github.com/aspect-build/rules_lint/pull/386) - Changes by create-pull-request action by [@github-actions](https://redirect.github.com/github-actions) in [https://github.com/aspect-build/rules_lint/pull/390](https://redirect.github.com/aspect-build/rules_lint/pull/390) - fix: support file list input for format command to bypass OS limits by [@mrmeku](https://redirect.github.com/mrmeku) in [https://github.com/aspect-build/rules_lint/pull/391](https://redirect.github.com/aspect-build/rules_lint/pull/391) - chore: point to non-deprecated rustfmt by [@alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/aspect-build/rules_lint/pull/392](https://redirect.github.com/aspect-build/rules_lint/pull/392) - fix: Include stylelint config deps ([#394](https://redirect.github.com/aspect-build/rules_lint/issues/394)) by [@sallustfire](https://redirect.github.com/sallustfire) in [https://github.com/aspect-build/rules_lint/pull/395](https://redirect.github.com/aspect-build/rules_lint/pull/395) - chore: discourage use of select by [@alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/aspect-build/rules_lint/pull/393](https://redirect.github.com/aspect-build/rules_lint/pull/393) - Changes by create-pull-request action by [@github-actions](https://redirect.github.com/github-actions) in [https://github.com/aspect-build/rules_lint/pull/396](https://redirect.github.com/aspect-build/rules_lint/pull/396) - Changes by create-pull-request action by [@github-actions](https://redirect.github.com/github-actions) in [https://github.com/aspect-build/rules_lint/pull/397](https://redirect.github.com/aspect-build/rules_lint/pull/397) - fix: shellcheck should visit srcs of sh_test by [@alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/aspect-build/rules_lint/pull/398](https://redirect.github.com/aspect-build/rules_lint/pull/398) - Changes by create-pull-request action by [@github-actions](https://redirect.github.com/github-actions) in [https://github.com/aspect-build/rules_lint/pull/399](https://redirect.github.com/aspect-build/rules_lint/pull/399) - chore: bump to latest release of Aspect CLI by [@gregmagolan](https://redirect.github.com/gregmagolan) in [https://github.com/aspect-build/rules_lint/pull/403](https://redirect.github.com/aspect-build/rules_lint/pull/403) #### New Contributors - [@mark-thm](https://redirect.github.com/mark-thm) made their first contribution in [https://github.com/aspect-build/rules_lint/pull/388](https://redirect.github.com/aspect-build/rules_lint/pull/388) - [@TimotheusBachinger](https://redirect.github.com/TimotheusBachinger) made their first contribution in [https://github.com/aspect-build/rules_lint/pull/386](https://redirect.github.com/aspect-build/rules_lint/pull/386) **Full Changelog**: https://github.com/aspect-build/rules_lint/compare/v1.0.1...v1.0.2 ### [`v1.0.1`](https://redirect.github.com/aspect-build/rules_lint/releases/tag/v1.0.1) [Compare Source](https://redirect.github.com/aspect-build/rules_lint/compare/v1.0.0...v1.0.1) #### Using Bzlmod with Bazel 6 1. Enable with `common --enable_bzlmod` in `.bazelrc`. 2. Add to your `MODULE.bazel` file: ```starlark bazel_dep(name = "aspect_rules_lint", version = "1.0.1") ### Next, follow the install instructions for ### - linting: https://github.com/aspect-build/rules_lint/blob/v1.0.1/docs/linting.md ### - formatting: https://github.com/aspect-build/rules_lint/blob/v1.0.1/docs/formatting.md ``` #### Using WORKSPACE Paste this snippet into your file: ```starlark load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "aspect_rules_lint", sha256 = "fe2c8fc9419e5cd31ae63c1b8c3ae643b10a2befe810dcb8d142a7fe9554ec36", strip_prefix = "rules_lint-1.0.1", url = "https://github.com/aspect-build/rules_lint/releases/download/v1.0.1/rules_lint-v1.0.1.tar.gz", ) ### aspect_rules_lint depends on aspect_bazel_lib. http_archive( name = "aspect_bazel_lib", sha256 = "6d758a8f646ecee7a3e294fbe4386daafbe0e5966723009c290d493f227c390b", strip_prefix = "bazel-lib-2.7.7", url = "https://github.com/aspect-build/bazel-lib/releases/download/v2.7.7/bazel-lib-v2.7.7.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:checkstyle.bzl", "fetch_checkstyle") fetch_checkstyle() load("@aspect_rules_lint//lint:pmd.bzl", "fetch_pmd") fetch_pmd() 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 must provide these tools yourself 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 - fix(format): Allow git-attributes to be set to true by [@mrmeku](https://redirect.github.com/mrmeku) in [https://github.com/aspect-build/rules_lint/pull/384](https://redirect.github.com/aspect-build/rules_lint/pull/384) **Full Changelog**: https://github.com/aspect-build/rules_lint/compare/v1.0.0...v1.0.1 ### [`v1.0.0`](https://redirect.github.com/aspect-build/rules_lint/releases/tag/v1.0.0) [Compare Source](https://redirect.github.com/aspect-build/rules_lint/compare/v0.21.0...v1.0.0) #### Using Bzlmod with Bazel 6 1. Enable with `common --enable_bzlmod` in `.bazelrc`. 2. Add to your `MODULE.bazel` file: ```starlark bazel_dep(name = "aspect_rules_lint", version = "1.0.0") ### Next, follow the install instructions for ### - linting: https://github.com/aspect-build/rules_lint/blob/v1.0.0/docs/linting.md ### - formatting: https://github.com/aspect-build/rules_lint/blob/v1.0.0/docs/formatting.md ``` #### Using WORKSPACE Paste this snippet into your file: ```starlark load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "aspect_rules_lint", sha256 = "3eddc2b7f989cb7d490fe0e67e59db76dcd4e8fa5df352feaff90f92d2f08ec6", strip_prefix = "rules_lint-1.0.0", url = "https://github.com/aspect-build/rules_lint/releases/download/v1.0.0/rules_lint-v1.0.0.tar.gz", ) ### aspect_rules_lint depends on aspect_bazel_lib. http_archive( name = "aspect_bazel_lib", sha256 = "6d758a8f646ecee7a3e294fbe4386daafbe0e5966723009c290d493f227c390b", strip_prefix = "bazel-lib-2.7.7", url = "https://github.com/aspect-build/bazel-lib/releases/download/v2.7.7/bazel-lib-v2.7.7.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:checkstyle.bzl", "fetch_checkstyle") fetch_checkstyle() load("@aspect_rules_lint//lint:pmd.bzl", "fetch_pmd") fetch_pmd() 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 must provide these tools yourself 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 - docs: clarify warning vs error by [@alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/aspect-build/rules_lint/pull/241](https://redirect.github.com/aspect-build/rules_lint/pull/241) - chore: Real time instead of user time when formatting by [@honnix](https://redirect.github.com/honnix) in [https://github.com/aspect-build/rules_lint/pull/240](https://redirect.github.com/aspect-build/rules_lint/pull/240) - feat: format.sh has same behavior with arguments by [@mrmeku](https://redirect.github.com/mrmeku) in [https://github.com/aspect-build/rules_lint/pull/244](https://redirect.github.com/aspect-build/rules_lint/pull/244) - chore: bump example to rules_js 2.0.0-alpha.7 by [@gregmagolan](https://redirect.github.com/gregmagolan) in [https://github.com/aspect-build/rules_lint/pull/247](https://redirect.github.com/aspect-build/rules_lint/pull/247) - chore: upgrade example to eslint 9 by [@alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/aspect-build/rules_lint/pull/246](https://redirect.github.com/aspect-build/rules_lint/pull/246) - feat(format): add SCSS and Less as CSS variants by [@alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/aspect-build/rules_lint/pull/248](https://redirect.github.com/aspect-build/rules_lint/pull/248) - feat: print better command to fix format check fails by [@alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/aspect-build/rules_lint/pull/249](https://redirect.github.com/aspect-build/rules_lint/pull/249) - chore(deps): example update to rules_js2 RC by [@alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/aspect-build/rules_lint/pull/250](https://redirect.github.com/aspect-build/rules_lint/pull/250) - fix(example): demonstrate use of type definitions in eslint aspect by [@jgao54](https://redirect.github.com/jgao54) in [https://github.com/aspect-build/rules_lint/pull/174](https://redirect.github.com/aspect-build/rules_lint/pull/174) - docs(format): include API docs for each language/tool by [@alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/aspect-build/rules_lint/pull/251](https://redirect.github.com/aspect-build/rules_lint/pull/251) - fix: move mnemonic to after label in report, exit_code and patch output filename by [@gregmagolan](https://redirect.github.com/gregmagolan) in [https://github.com/aspect-build/rules_lint/pull/252](https://redirect.github.com/aspect-build/rules_lint/pull/252) - Changes by create-pull-request action by [@github-actions](https://redirect.github.com/github-actions) in [https://github.com/aspect-build/rules_lint/pull/253](https://redirect.github.com/aspect-build/rules_lint/pull/253) - chore: bump example to bazel-lib 2.7.5 by [@gregmagolan](https://redirect.github.com/gregmagolan) in [https://github.com/aspect-build/rules_lint/pull/254](https://redirect.github.com/aspect-build/rules_lint/pull/254) - chore: show less noisy prettier in example by [@alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/aspect-build/rules_lint/pull/256](https://redirect.github.com/aspect-build/rules_lint/pull/256) - Changes by create-pull-request action by [@github-actions](https://redirect.github.com/github-actions) in [https://github.com/aspect-build/rules_lint/pull/258](https://redirect.github.com/aspect-build/rules_lint/pull/258) - docs: clarify what's not recommended by [@alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/aspect-build/rules_lint/pull/264](https://redirect.github.com/aspect-build/rules_lint/pull/264) - chore: bump example to bazel-lib 2.7.7 by [@gregmagolan](https://redirect.github.com/gregmagolan) in [https://github.com/aspect-build/rules_lint/pull/265](https://redirect.github.com/aspect-build/rules_lint/pull/265) - prettier log level followup by [@alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/aspect-build/rules_lint/pull/257](https://redirect.github.com/aspect-build/rules_lint/pull/257) - fix(format): "File name too long" when using --disable_git_attribute_checks by [@mattnworb](https://redirect.github.com/mattnworb) in [https://github.com/aspect-build/rules_lint/pull/262](https://redirect.github.com/aspect-build/rules_lint/pull/262) - feat: add format_multirun() attribute to disable slow gitattribute checks by [@mattnworb](https://redirect.github.com/mattnworb) in [https://github.com/aspect-build/rules_lint/pull/263](https://redirect.github.com/aspect-build/rules_lint/pull/263) - chore: bump to Aspect CLI 5.9.36 by [@gregmagolan](https://redirect.github.com/gregmagolan) in [https://github.com/aspect-build/rules_lint/pull/268](https://redirect.github.com/aspect-build/rules_lint/pull/268) - refactor: introduce mnemonic convention for rules_lint linters by [@gregmagolan](https://redirect.github.com/gregmagolan) in [https://github.com/aspect-build/rules_lint/pull/266](https://redirect.github.com/aspect-build/rules_lint/pull/266) - chore: test on Bazel 7 by [@alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/aspect-build/rules_lint/pull/191](https://redirect.github.com/aspect-build/rules_lint/pull/191) - Changes by create-pull-request action by [@github-actions](https://redirect.github.com/github-actions) in [https://github.com/aspect-build/rules_lint/pull/271](https://redirect.github.com/aspect-build/rules_lint/pull/271) - chore(example): enable proto toolchain resolution by [@alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/aspect-build/rules_lint/pull/267](https://redirect.github.com/aspect-build/rules_lint/pull/267) - Correct docstring for eslint ([#275](https://redirect.github.com/aspect-build/rules_lint/issues/275)) by [@jmeekhof](https://redirect.github.com/jmeekhof) in [https://github.com/aspect-build/rules_lint/pull/276](https://redirect.github.com/aspect-build/rules_lint/pull/276) - Changes by create-pull-request action by [@github-actions](https://redirect.github.com/github-actions) in [https://github.com/aspect-build/rules_lint/pull/274](https://redirect.github.com/aspect-build/rules_lint/pull/274) - chore: add --check_direct_dependencies to .bazelrc by [@gregmagolan](https://redirect.github.com/gregmagolan) in [https://github.com/aspect-build/rules_lint/pull/277](https://redirect.github.com/aspect-build/rules_lint/pull/277) - feat: Optimize the git ignore checks by [@mrmeku](https://redirect.github.com/mrmeku) in [https://github.com/aspect-build/rules_lint/pull/270](https://redirect.github.com/aspect-build/rules_lint/pull/270) - chore(deps): update yamlfmt and gofumpt to latest by [@hunshcn](https://redirect.github.com/hunshcn) in [https://github.com/aspect-build/rules_lint/pull/278](https://redirect.github.com/aspect-build/rules_lint/pull/278) - feat: auto-update multitool versions by [@hunshcn](https://redirect.github.com/hunshcn) in [https://github.com/aspect-build/rules_lint/pull/281](https://redirect.github.com/aspect-build/rules_lint/pull/281) - Only run aspect actions when input files provided by [@psalaberria002](https://redirect.github.com/psalaberria002) in [https://github.com/aspect-build/rules_lint/pull/273](https://redirect.github.com/aspect-build/rules_lint/pull/273) - feat: Add Cuda format support by [@jsharpe](https://redirect.github.com/jsharpe) in [https://github.com/aspect-build/rules_lint/pull/285](https://redirect.github.com/aspect-build/rules_lint/pull/285) - fix(format): print FIX_CMD only when check by [@hunshcn](https://redirect.github.com/hunshcn) in [https://github.com/aspect-build/rules_lint/pull/280](https://redirect.github.com/aspect-build/rules_lint/pull/280) - Changes by create-pull-request action by [@github-actions](https://redirect.github.com/github-actions) in [https://github.com/aspect-build/rules_lint/pull/286](https://redirect.github.com/aspect-build/rules_lint/pull/286) - refactor: combine mirroring into one step by [@alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/aspect-build/rules_lint/pull/289](https://redirect.github.com/aspect-build/rules_lint/pull/289) - Update mirror.yml by [@alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/aspect-build/rules_lint/pull/291](https://redirect.github.com/aspect-build/rules_lint/pull/291) - Changes by create-pull-request action by [@github-actions](https://redirect.github.com/github-actions) in [https://github.com/aspect-build/rules_lint/pull/292](https://redirect.github.com/aspect-build/rules_lint/pull/292) - Feat: clang-tidy for linting of C/C++ code by [@peakschris](https://redirect.github.com/peakschris) in [https://github.com/aspect-build/rules_lint/pull/287](https://redirect.github.com/aspect-build/rules_lint/pull/287) - Update clang_tidy_wrapper.bash shebang by [@jsharpe](https://redirect.github.com/jsharpe) in [https://github.com/aspect-build/rules_lint/pull/299](https://redirect.github.com/aspect-build/rules_lint/pull/299) - Fix safe_flag parsing in clang_tidy.bzl by [@jsharpe](https://redirect.github.com/jsharpe) in [https://github.com/aspect-build/rules_lint/pull/300](https://redirect.github.com/aspect-build/rules_lint/pull/300) - Changes by create-pull-request action by [@github-actions](https://redirect.github.com/github-actions) in [https://github.com/aspect-build/rules_lint/pull/301](https://redirect.github.com/aspect-build/rules_lint/pull/301) - chore: fix ruff mirroring by [@alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/aspect-build/rules_lint/pull/306](https://redirect.github.com/aspect-build/rules_lint/pull/306) - Changes by create-pull-request action by [@github-actions](https://redirect.github.com/github-actions) in [https://github.com/aspect-build/rules_lint/pull/308](https://redirect.github.com/aspect-build/rules_lint/pull/308) - feat: include ruff in multitool by [@alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/aspect-build/rules_lint/pull/309](https://redirect.github.com/aspect-build/rules_lint/pull/309) - chore: update buildifier pre-commit by [@alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/aspect-build/rules_lint/pull/311](https://redirect.github.com/aspect-build/rules_lint/pull/311) - chore: mirror latest vale release by [@alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/aspect-build/rules_lint/pull/310](https://redirect.github.com/aspect-build/rules_lint/pull/310) - Fix ironic typo by [@SpencerC](https://redirect.github.com/SpencerC) in [https://github.com/aspect-build/rules_lint/pull/316](https://redirect.github.com/aspect-build/rules_lint/pull/316) - Changes by create-pull-request action by [@github-actions](https://redirect.github.com/github-actions) in [https://github.com/aspect-build/rules_lint/pull/315](https://redirect.github.com/aspect-build/rules_lint/pull/315) - fix: ruff 0.5.0 windows release doesn't nest a folder by [@alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/aspect-build/rules_lint/pull/318](https://redirect.github.com/aspect-build/rules_lint/pull/318) - feat: linter aspect factories allow customizing rule kinds by [@alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/aspect-build/rules_lint/pull/321](https://redirect.github.com/aspect-build/rules_lint/pull/321) - Changes by create-pull-request action by [@github-actions](https://redirect.github.com/github-actions) in [https://github.com/aspect-build/rules_lint/pull/328](https://redirect.github.com/aspect-build/rules_lint/pull/328) - feat: add GraphQL format support ([#319](https://redirect.github.com/aspect-build/rules_lint/issues/319)) by [@sallustfire](https://redirect.github.com/sallustfire) in [https://github.com/aspect-build/rules_lint/pull/322](https://redirect.github.com/aspect-build/rules_lint/pull/322) - Fix Rust formatting when //:format is called in different subdirectory by [@dmeister](https://redirect.github.com/dmeister) in [https://github.com/aspect-build/rules_lint/pull/327](https://redirect.github.com/aspect-build/rules_lint/pull/327) - feat: produce new human-readable output group by [@alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/aspect-build/rules_lint/pull/331](https://redirect.github.com/aspect-build/rules_lint/pull/331) - fix: connect eslint --debug by [@sallustfire](https://redirect.github.com/sallustfire) in [https://github.com/aspect-build/rules_lint/pull/334](https://redirect.github.com/aspect-build/rules_lint/pull/334) - feat: color the human-readable outputs by [@alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/aspect-build/rules_lint/pull/333](https://redirect.github.com/aspect-build/rules_lint/pull/333) - fix: lint.sh script --fix flag by [@alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/aspect-build/rules_lint/pull/338](https://redirect.github.com/aspect-build/rules_lint/pull/338) - fix(eslint): print relative paths in stylish output by [@alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/aspect-build/rules_lint/pull/337](https://redirect.github.com/aspect-build/rules_lint/pull/337) - chore: run formatter by [@alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/aspect-build/rules_lint/pull/336](https://redirect.github.com/aspect-build/rules_lint/pull/336) - fix: include transitive type declarations with eslint by [@sallustfire](https://redirect.github.com/sallustfire) in [https://github.com/aspect-build/rules_lint/pull/339](https://redirect.github.com/aspect-build/rules_lint/pull/339) - chore(deps): example: upgrade buf to latest rules and tool runtime by [@alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/aspect-build/rules_lint/pull/342](https://redirect.github.com/aspect-build/rules_lint/pull/342) - feat: stylelint by [@alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/aspect-build/rules_lint/pull/341](https://redirect.github.com/aspect-build/rules_lint/pull/341) - Changes by create-pull-request action by [@github-actions](https://redirect.github.com/github-actions) in [https://github.com/aspect-build/rules_lint/pull/343](https://redirect.github.com/aspect-build/rules_lint/pull/343) - Changes by create-pull-request action by [@github-actions](https://redirect.github.com/github-actions) in [https://github.com/aspect-build/rules_lint/pull/348](https://redirect.github.com/aspect-build/rules_lint/pull/348) - chore(docs): fix eslint copy-pasta by [@alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/aspect-build/rules_lint/pull/345](https://redirect.github.com/aspect-build/rules_lint/pull/345) - Changes by create-pull-request action by [@github-actions](https://redirect.github.com/github-actions) in [https://github.com/aspect-build/rules_lint/pull/352](https://redirect.github.com/aspect-build/rules_lint/pull/352) - Changes by create-pull-request action by [@github-actions](https://redirect.github.com/github-actions) in [https://github.com/aspect-build/rules_lint/pull/356](https://redirect.github.com/aspect-build/rules_lint/pull/356) - chore: update bazel-lib version in WORKSPACE snippet by [@alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/aspect-build/rules_lint/pull/354](https://redirect.github.com/aspect-build/rules_lint/pull/354) - chore: mirror newest vale release by [@alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/aspect-build/rules_lint/pull/357](https://redirect.github.com/aspect-build/rules_lint/pull/357) - Remove cxxopt flags when linting C sources. by [@agoessling](https://redirect.github.com/agoessling) in [https://github.com/aspect-build/rules_lint/pull/359](https://redirect.github.com/aspect-build/rules_lint/pull/359) - Add C example and file extension. by [@agoessling](https://redirect.github.com/agoessling) in [https://github.com/aspect-build/rules_lint/pull/349](https://redirect.github.com/aspect-build/rules_lint/pull/349) - fix: filter out 'external' sources from linting by [@alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/aspect-build/rules_lint/pull/358](https://redirect.github.com/aspect-build/rules_lint/pull/358) - chore(deps): bump bazel-lib minimum by [@alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/aspect-build/rules_lint/pull/360](https://redirect.github.com/aspect-build/rules_lint/pull/360) - Changes by create-pull-request action by [@github-actions](https://redirect.github.com/github-actions) in [https://github.com/aspect-build/rules_lint/pull/361](https://redirect.github.com/aspect-build/rules_lint/pull/361) - Fix crash caused by fail-on-violation and no lintable files in target by [@tokongs](https://redirect.github.com/tokongs) in [https://github.com/aspect-build/rules_lint/pull/362](https://redirect.github.com/aspect-build/rules_lint/pull/362) - chore(deps): update stardoc by [@alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/aspect-build/rules_lint/pull/363](https://redirect.github.com/aspect-build/rules_lint/pull/363) - Revert "chore(deps): update stardoc" by [@alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/aspect-build/rules_lint/pull/364](https://redirect.github.com/aspect-build/rules_lint/pull/364) - chore: update stardoc by [@alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/aspect-build/rules_lint/pull/365](https://redirect.github.com/aspect-build/rules_lint/pull/365) - Changes by create-pull-request action by [@github-actions](https://redirect.github.com/github-actions) in [https://github.com/aspect-build/rules_lint/pull/366](https://redirect.github.com/aspect-build/rules_lint/pull/366) - Changes by create-pull-request action by [@github-actions](https://redirect.github.com/github-actions) in [https://github.com/aspect-build/rules_lint/pull/367](https://redirect.github.com/aspect-build/rules_lint/pull/367) - fix: don't run eslint with zero files to check by [@alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/aspect-build/rules_lint/pull/370](https://redirect.github.com/aspect-build/rules_lint/pull/370) - Changes by create-pull-request action by [@github-actions](https://redirect.github.com/github-actions) in [https://github.com/aspect-build/rules_lint/pull/373](https://redirect.github.com/aspect-build/rules_lint/pull/373) - Add --respect-project-filters to scalafmt by [@vinnybod](https://redirect.github.com/vinnybod) in [https://github.com/aspect-build/rules_lint/pull/372](https://redirect.github.com/aspect-build/rules_lint/pull/372) - Add a checkstyle linter by [@vinnybod](https://redirect.github.com/vinnybod) in [https://github.com/aspect-build/rules_lint/pull/374](https://redirect.github.com/aspect-build/rules_lint/pull/374) - fix: handle empty exit_code File when fail_on_violation is set by [@gregmagolan](https://redirect.github.com/gregmagolan) in [https://github.com/aspect-build/rules_lint/pull/375](https://redirect.github.com/aspect-build/rules_lint/pull/375) - Changes by create-pull-request action by [@github-actions](https://redirect.github.com/github-actions) in [https://github.com/aspect-build/rules_lint/pull/376](https://redirect.github.com/aspect-build/rules_lint/pull/376) - fix(example): include clang-tidy in bazel lint setup by [@alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/aspect-build/rules_lint/pull/379](https://redirect.github.com/aspect-build/rules_lint/pull/379) - Changes by create-pull-request action by [@github-actions](https://redirect.github.com/github-actions) in [https://github.com/aspect-build/rules_lint/pull/380](https://redirect.github.com/aspect-build/rules_lint/pull/380) - chore: final docs for 1.0 by [@alexeagle](https://redirect.github.com/alexeagle) in [https://github.com/aspect-build/rules_lint/pull/381](https://redirect.github.com/aspect-build/rules_lint/pull/381) #### New Contributors - [@jgao54](https://redirect.github.com/jgao54) made their first contribution in [https://github.com/aspect-build/rules_lint/pull/174](https://redirect.github.com/aspect-build/rules_lint/pull/174) - [@jmeekhof](https://redirect.github.com/jmeekhof) made their first contribution in [https://github.com/aspect-build/rules_lint/pull/276](https://redirect.github.com/aspect-build/rules_lint/pull/276) - [@peakschris](https://redirect.github.com/peakschris) made their first contribution in [https://github.com/aspect-build/rules_lint/pull/287](https://redirect.github.com/aspect-build/rules_lint/pull/287) - [@SpencerC](https://redirect.github.com/SpencerC) made their first contribution in [https://github.com/aspect-build/rules_lint/pull/316](https://redirect.github.com/aspect-build/rules_lint/pull/316) - [@sallustfire](https://redirect.github.com/sallustfire) made their first contribution in [https://github.com/aspect-build/rules_lint/pull/322](https://redirect.github.com/aspect-build/rules_lint/pull/322) - [@dmeister](https://redirect.github.com/dmeister) made their first contribution in [https://github.com/aspect-build/rules_lint/pull/327](https://redirect.github.com/aspect-build/rules_lint/pull/327) - [@agoessling](https://redirect.github.com/agoessling) made their first contribution in [https://github.com/aspect-build/rules_lint/pull/359](https://redirect.github.com/aspect-build/rules_lint/pull/359) - [@vinnybod](https://redirect.github.com/vinnybod) made their first contribution in [https://github.com/aspect-build/rules_lint/pull/372](https://redirect.github.com/aspect-build/rules_lint/pull/372) **Full Changelog**: https://github.com/aspect-build/rules_lint/compare/v0.21.0...v1.0.0Configuration
π Schedule: Branch creation - "after 2am every weekday,before 5am every weekday" in timezone America/Los_Angeles, Automerge - At any time (no schedule defined).
π¦ Automerge: Disabled by config. Please merge this manually once you are satisfied.
β» Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
π Ignore: Close this PR and you won't be reminded about these updates again.
This PR was generated by Mend Renovate. View the repository job log.