CI: add markdownlint + docs-check wrapper; extend link check scope

This commit is contained in:
Abhimanyu Saharan
2026-02-12 13:19:37 +00:00
parent 879b50199f
commit d6db63480e
14 changed files with 87 additions and 11 deletions

23
.markdownlint-cli2.yaml Normal file
View File

@@ -0,0 +1,23 @@
# markdownlint-cli2 config
# Keep the ruleset intentionally tiny to avoid noisy churn.
config:
default: false
MD009: true # no trailing spaces
MD010: true # no hard tabs
MD012: true # no multiple consecutive blank lines
MD047: true # single trailing newline
globs:
- "**/*.md"
ignores:
- "**/node_modules/**"
- "**/.next/**"
- "**/dist/**"
- "**/build/**"
- "**/.venv/**"
- "**/__pycache__/**"
- "**/.pytest_cache/**"
- "**/.mypy_cache/**"
- "**/coverage/**"