From 6eb48bd1805f961865a8f4e03c72d1283acca812 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Wed, 9 Apr 2025 11:33:31 +0200 Subject: [PATCH] chore: Ignore duplicate markdown headings on different levels Necessary for CHANGELOG to pass since every change contains something like 'Added', 'Fixed', 'Changed' as headings. Will still error if there are e.g. multiple 'Added' headings for a single version. --- .markdownlint.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .markdownlint.json diff --git a/.markdownlint.json b/.markdownlint.json new file mode 100644 index 0000000..fba9b6e --- /dev/null +++ b/.markdownlint.json @@ -0,0 +1,5 @@ +{ + "no-duplicate-heading": { + "siblings_only": true + } +}