From fe332d10e04b7c5f4632f6b8fb3e3b728b351458 Mon Sep 17 00:00:00 2001 From: Jeremi Joslin Date: Thu, 2 Jul 2026 11:52:11 +0700 Subject: [PATCH] fix(docs): make Vale style check blocking check:style ran run-vale.mjs with --no-exit, so style errors (including the error-level EmDash rule) never failed CI; banned punctuation shipped in past PRs with green checks. Vale is clean on main (0 errors in 42 files), and with this change an injected violation exits 1. Signed-off-by: Jeremi Joslin --- docs/site/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/site/package.json b/docs/site/package.json index 24801711..44146a5d 100644 --- a/docs/site/package.json +++ b/docs/site/package.json @@ -19,7 +19,7 @@ "check:content": "node scripts/check-doc-frontmatter.mjs", "check:svg": "node scripts/check-svg-a11y.mjs", "check:markdown": "markdownlint-cli2", - "check:style": "node scripts/run-vale.mjs --no-exit --glob=!**/products/** src/content/docs README.md", + "check:style": "node scripts/run-vale.mjs --glob=!**/products/** src/content/docs README.md", "check:style:fixtures": "node scripts/check-vale-fixtures.mjs", "check:openapi": "redocly lint registry-relay registry-notary", "check:config-vocabulary": "scripts/check-stale-config-vocabulary.sh",