From bc3bf3211f029f53128ec8a0db36f253d1a00c0d Mon Sep 17 00:00:00 2001 From: priosshrsth Date: Wed, 19 Aug 2026 11:36:52 +0000 Subject: [PATCH] ci: exclude CHANGELOG.md from formatting MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit release-please writes CHANGELOG.md with two blank lines before each section heading, which oxfmt rejects, so `vp check` failed on the release PR and blocked the merge that publishes. The file is generated and owned by release-please, so it is excluded rather than reformatted — reformatting it would only be undone on the next release. --- .prettierignore | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .prettierignore diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000..0f83d2f --- /dev/null +++ b/.prettierignore @@ -0,0 +1,2 @@ +# Files owned by release-please; its output is not oxfmt-formatted. +CHANGELOG.md