chore 📦: Add markdown linting config for line length and code block formatting
Some checks failed
ansible-lint / Ansible Lint (push) Successful in 9s
Gitleaks Scan / gitleaks (push) Successful in 4s
Markdown Lint / markdown-lint (push) Failing after 1m8s

This commit adds a new markdown linting configuration to enforce line length limits and consistent formatting of code blocks across the project.
This commit is contained in:
2026-01-25 10:50:44 +01:00
parent 9a6ac67e20
commit 36401dc8f4

7
.markdownlint.json Normal file
View File

@@ -0,0 +1,7 @@
{
"MD013": {
"line_length": 100,
"code_block_line_length": 120,
"tables": false
}
}