chore: Ignore duplicate markdown headings on different levels
Some checks failed
website / build (push) Waiting to run
website / deploy (push) Blocked by required conditions
Publish python package to pypi and testpypi / Build distribution (push) Has been cancelled
Publish python package to pypi and testpypi / Test publishing to testpypi (push) Has been cancelled
Publish python package to pypi and testpypi / Publish dist to pypi (push) Has been cancelled
Publish python package to pypi and testpypi / Create github release (push) Has been cancelled

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.
This commit is contained in:
Marty Oehme 2025-04-09 11:33:31 +02:00
parent 11d35429c7
commit 6eb48bd180
Signed by: Marty
GPG key ID: 4E535BC19C61886E

5
.markdownlint.json Normal file
View file

@ -0,0 +1,5 @@
{
"no-duplicate-heading": {
"siblings_only": true
}
}