Skip to content

Commit d79a31f

Browse files
committed
chore
1 parent 22d66be commit d79a31f

2 files changed

Lines changed: 12 additions & 2 deletions

File tree

.github/workflows/ci-md.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ permissions: # WHY: Use least privileges required.
2323

2424
jobs:
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

@@ -47,7 +47,6 @@ jobs:
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.

.markdownlint.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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

0 commit comments

Comments
 (0)