Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .markdownlint-cli2.jsonc
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
// markdownlint configuration for Draft Punks
// Docs: https://github.com/DavidAnson/markdownlint
"config": {
"default": true,
// Allow long lines (prose-heavy README, CHANGELOG)
"MD013": false,
// Allow duplicate headings in different sections
"MD024": { "siblings_only": true },
// Allow trailing punctuation in headings (emoji)
"MD026": false,
// Allow inline HTML (GitHub callouts, badges)
"MD033": false
},
// Skip archived docs and auto-generated review worksheets
"ignores": [
"docs/archive/**",
"docs/code-reviews/**"
]
}
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ All notable changes to this project will be documented in this file.

### Added

- **GraphQL Pagination**: Review thread fetch now paginates past the 100-thread limit, preventing false "merge ready" on large PRs.
- **Markdownlint Pre-Commit Hook**: `scripts/hooks/pre-commit` runs `markdownlint-cli2` on staged `.md` files (excludes `docs/archive/` and `docs/code-reviews/`).
- **Doghouse Flight Recorder**: A new agent-native engine for PR state reconstruction.
- **CLI Subcommands**: `snapshot`, `watch`, `playback`, `export`.
- **Blocking Matrix**: Logic to distinguish merge conflicts from secondary blockers.
Expand Down
Loading
Loading