This is an automated email from the ASF dual-hosted git repository.
sbp pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tooling-trusted-releases.git
The following commit(s) were added to refs/heads/main by this push:
new 804c442 Treat all script lint warnings as errors
804c442 is described below
commit 804c44203461f0f4c22acf721281d479c591a286
Author: Sean B. Palmer <[email protected]>
AuthorDate: Fri Dec 12 16:29:17 2025 +0000
Treat all script lint warnings as errors
---
.pre-commit-heavy.yaml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/.pre-commit-heavy.yaml b/.pre-commit-heavy.yaml
index 9b31eb7..d47f0a3 100644
--- a/.pre-commit-heavy.yaml
+++ b/.pre-commit-heavy.yaml
@@ -6,7 +6,7 @@ repos:
# Install biome from https://biomejs.dev/guides/manual-installation/
# Avoid using NPM to install it until #359 is resolved
name: biome JS check
- entry: biome check --write --files-ignore-unknown=true
--no-errors-on-unmatched --colors=off
+ entry: biome check --write --error-on-warnings
--files-ignore-unknown=true --no-errors-on-unmatched --colors=off
language: system
types: [javascript]
files: ^atr/static/js/src/.*\.js$
@@ -21,8 +21,8 @@ repos:
# These must be in the order deny, warn, allow
- --deny=correctness
- --deny=perf
- - --warn=suspicious
- - --warn=pedantic
+ - --deny=suspicious
+ - --deny=pedantic
- --allow=unicorn/prefer-query-selector
- repo: https://github.com/oxipng/oxipng
rev: v9.1.5
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]