From e90569bdcc947050c609203e1c2e7a620338c8be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rodr=C3=ADguez?= <2887858+deivid-rodriguez@users.noreply.github.com> Date: Wed, 29 Oct 2025 11:36:02 +0100 Subject: [PATCH] Adjust error format to latest prettier output To avoid generating an unnecessary annotation. --- script/reviewdog.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/reviewdog.sh b/script/reviewdog.sh index 33e9432f4b..b3bb93872f 100755 --- a/script/reviewdog.sh +++ b/script/reviewdog.sh @@ -10,7 +10,7 @@ echo "::group:: Running prettier with reviewdog 🐶 ..." "$(npm root)/.bin/prettier" --check . 2>&1 | sed --regexp-extended 's/(\[warn\].*)$/\1 File is not properly formatted./' \ | reviewdog \ - -efm="%-G[warn] Code style issues found in the above file(s). Forgot to run Prettier%. File is not properly formatted." \ + -efm="%-G[warn] Code style issues found in %s. Run Prettier to fix. File is not properly formatted." \ -efm="[%tarn] %f %m" \ -efm="%E[%trror] %f: %m (%l:%c)" \ -efm="%C[error]%r" \