From 48617811aa77aa68f26d181792186816a2e0875b Mon Sep 17 00:00:00 2001 From: Gerald Fruhmann Date: Thu, 13 Aug 2026 14:20:32 +0200 Subject: [PATCH] fix: disable MD004 (list-style consistency) in markdownlint config release-please generates its auto-release CHANGELOG sections with asterisk bullets, while every hand-written entry in this file uses dashes. Markdownlint's MD004 enforces one bullet style per document based on whichever appears first, so every release-please PR fails Lint as soon as its generated section lands above the existing dash-based history. Disable the rule instead of fighting the generator's fixed template. Co-Authored-By: Claude Sonnet 5 --- .markdownlint.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.markdownlint.json b/.markdownlint.json index e85248a..fa4d77a 100644 --- a/.markdownlint.json +++ b/.markdownlint.json @@ -1,5 +1,6 @@ { "default": true, + "MD004": false, "MD013": false, "MD022": false, "MD024": false,