fix: restore CI workflow with markdownlint config #30

Merged
ghost merged 3 commits from fix/restore-agents-ci into main 2026-03-20 23:57:04 +00:00
Showing only changes of commit 1e3d4d6e88 - Show all commits
+5 -1
View File
@@ -1,6 +1,10 @@
# Markdownlint configuration for the agents repo.
# Agent prompt files intentionally use bare URLs (curl commands),
# inline HTML (template variables), and emphasis-as-headings.
# inline HTML (template variables), emphasis-as-headings, and long lines.
MD013: false # no-line-length — prompts and ops docs use long lines intentionally
MD022: false # no-blanks-around-headings — ops docs use compact heading style
MD031: false # no-blanks-around-fences — ops docs use fences inside blockquotes
MD033: false # no-inline-html
MD034: false # no-bare-urls
MD036: false # no-emphasis-as-heading
MD040: false # no-fenced-code-language — shell snippets often omit language tag