Skip to content

no-redundant-links

Disallows links whose text is identical to their URL.

When a URL is already the visible text, wrapping it in link syntax adds no information. Use a descriptive label or leave the URL bare.

<!-- Bad -->
[https://example.com](https://example.com)
<!-- Good -->
[Example](https://example.com)
https://example.com

This rule is not configurable.