File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ permissions: # WHY: Use least privileges required.
2323
2424jobs :
2525 ci :
26- name : Repository checks (pre-commit)
26+ name : Repository checks
2727 runs-on : ubuntu-latest # WHY: Linux environment matches most production deployments
2828 timeout-minutes : 10 # WHY: Prevent hanging jobs. If over, it is likely stuck.
2929
4747 globs : |
4848 **/*.md
4949
50-
5150 - name : B2) Lint YAML (uses .yamllint.yml)
5251 # WHY: Validate YAML correctness using repo-defined yamllint.yml rules.
5352 # OBS: Ensures GitHub Actions YAML and other YAML files remain valid.
Original file line number Diff line number Diff line change 1+ # ============================================================
2+ # .markdownlint.yml (Markdown linting configuration)
3+ # ============================================================
4+
5+ # WHY-FILE: Markdown lint rules for Markdown source repos such as specs.
6+ # WHY: Avoid enforcing line length; specs include long identifiers and URLs.
7+ # OBS: MD013 fails on identifier tables and unbreakable tokens (e.g., requirement IDs).
8+ # WHY: Allow inline HTML; specs may use semantic markers in normative text.
9+
10+ MD013 : false # Line length
11+ MD033 : false # Inline HTML
You can’t perform that action at this time.
0 commit comments