From e58d6b4e2e64883f8d38438e52b182e6ce8a0398 Mon Sep 17 00:00:00 2001 From: sehkone Date: Thu, 6 Aug 2026 20:43:40 +0900 Subject: [PATCH] Carry the organisation-wide MD024 baseline Every repository that lints Markdown configures MD024 as siblings_only, because CHANGELOG files in Keep a Changelog format repeat Added and Fixed under each version heading. siblings_only permits that while still catching genuine duplicates inside one section. MD024 reports nothing here today; this keeps the shared baseline uniform so nobody has to re-derive it per repository. Closes #92 --- .markdownlint-cli2.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .markdownlint-cli2.yaml diff --git a/.markdownlint-cli2.yaml b/.markdownlint-cli2.yaml new file mode 100644 index 0000000..dc4ae28 --- /dev/null +++ b/.markdownlint-cli2.yaml @@ -0,0 +1,11 @@ +globs: + - "**/*.md" +ignores: + - "node_modules/**" + - ".github/**" +config: + # Organisation-wide baseline: CHANGELOG files in Keep a Changelog format + # repeat `Added` and `Fixed` under every version. `siblings_only` allows + # that while still catching genuine duplicates inside one section. + MD024: + siblings_only: true