From a2ff38039b8349fc8cd520f7b640073df0a855fb Mon Sep 17 00:00:00 2001 From: Gerald Fruhmann Date: Thu, 13 Aug 2026 14:32:42 +0200 Subject: [PATCH] fix: disable MD012 (multiple blank lines) in markdownlint config Same root cause as the MD004 fix in #30: release-please's generated CHANGELOG template inserts double blank lines between its heading and section blocks (confirmed in the live CI failure log for PR #29, CHANGELOG.md:10 and :22). This is fixed template output from the release-please action, not something under our control, so it will recur on every future release PR unless disabled at the config level. Co-Authored-By: Claude Sonnet 5 --- .markdownlint.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.markdownlint.json b/.markdownlint.json index fa4d77a..0bd3874 100644 --- a/.markdownlint.json +++ b/.markdownlint.json @@ -1,6 +1,7 @@ { "default": true, "MD004": false, + "MD012": false, "MD013": false, "MD022": false, "MD024": false,