Skip to main content
Version: 0.10.4

REF-002: Broken Markdown Link - References

Summary

  • Rule ID: REF-002
  • Severity: HIGH
  • Category: References
  • Normative Level: SHOULD
  • Auto-Fix: No
  • Verified On: 2026-02-04

Applicability

  • Tool: all
  • Version Range: unspecified
  • Spec Revision: unspecified

Evidence Sources

Test Coverage Metadata

  • Unit tests: true
  • Fixture tests: true
  • E2E tests: false

Examples

The following examples demonstrate what triggers this rule and how to fix it.

Invalid

# Project

See [style guide](docs/STYLE.md) for conventions.
See [architecture](docs/ARCHITECTURE.md) for design.

(where docs/STYLE.md and docs/ARCHITECTURE.md do not exist)

Valid

# Project

See [style guide](docs/STYLE.md) for conventions.
Visit [GitHub](https://github.com) for source.

(where docs/STYLE.md exists on disk)