Fix auto-fixable markdownlint violations

This fixes all violations that can be fixed by using
`npm run lint:markdown -- --fix`.

This also updates the markdownlint configuration to require dashes in
unstyled lists. This results in the least amount of changes to Markdown
files. The default setting results in rewriting the complete CHANGELOG
file.
This commit is contained in:
Koen Vlaswinkel
2023-12-14 10:47:39 +01:00
parent d77a08fc37
commit 9a77748a59
6 changed files with 64 additions and 61 deletions

View File

@@ -1,4 +1,7 @@
{
"ul-style": {
"style": "dash"
},
"MD013": false,
"MD041": false
}