Fix 77 markdown lint errors across agent skill docs

Add .markdownlint-cli2.jsonc to suppress MD013 (line-length) and MD041
(first-line-heading) which are inappropriate for agent skill files with
YAML frontmatter and code examples.

Fix genuine structural issues in all affected files:
- Add blank lines around headings (MD022)
- Add blank lines around fenced code blocks (MD031)
- Add blank lines around lists (MD032)
- Add language specifiers to bare code fences (MD040)

Resolves: PRI-93

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
gandalf-the-greybeard[bot]
2026-03-11 01:14:26 +00:00
parent 5c32fed4d8
commit a5ffe58735
4 changed files with 37 additions and 4 deletions
+8
View File
@@ -0,0 +1,8 @@
{
"config": {
// Line length — not enforced for agent skill docs with code examples
"MD013": false,
// First line heading — files use YAML frontmatter, not headings
"MD041": false
}
}