Skip to main content

link-label-min-length

A rule inspired by WCAG Technique G91: Providing link text that describes the purpose of a link Enforce a minimum length for a link text.

Given the following rule setting:

"link-label-min-length": ["error", 4]

The following patterns are considered violations:

  <a>A</a
  <a aria-label="A"></a

The following patterns are not considered violations:

  <a>A link</a
  <a aria-label="A link"></a>