Add markdown lint

This commit is contained in:
Manuel Rüger
2024-01-26 16:22:51 +01:00
parent 78f7666697
commit a706499803
4 changed files with 246 additions and 211 deletions

12
.markdownlint-cli2.jsonc Normal file
View File

@@ -0,0 +1,12 @@
{
"globs": [
"*.md",
".github/**/*.md"
],
// ToDo: Following rules can't be fixed automatically. They should be enabled when fixed.
"config": {
"MD013": false, // https://github.com/markdownlint/markdownlint/blob/main/docs/RULES.md#md013---line-length
"MD033": false // https://github.com/markdownlint/markdownlint/blob/main/docs/RULES.md#md033---inline-html
}
}