This repository has been archived on 2026-06-16. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
org/.markdownlint.yaml
T
Samuel Stinkpost 1e3d4d6e88 fix: disable strict markdownlint rules for agent prompt files
Agent prompts, operational docs (OPERATIONS.md, POLICIES.md, TOOLS.md),
and marketing SOUL files intentionally use long lines, compact heading
style, and fences inside blockquotes. Disabling MD013, MD022, MD031,
and MD040 prevents false-positive CI failures on these files.

Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-03-20 23:06:38 +00:00

11 lines
621 B
YAML

# Markdownlint configuration for the agents repo.
# Agent prompt files intentionally use bare URLs (curl commands),
# 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