Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 431 Bytes

no-hash-ref.md

File metadata and controls

27 lines (17 loc) · 431 Bytes

no-hash-ref

Enforce an anchor element's href prop value is not just "#". You should use something more descriptive, or use a button instead.

options

This rule takes no options

Passes

// passes when the `href` is not `#`
<a href="foo#bar"></a>

Fails

// fails when the `href` is `#`
<a href="#"></a>

See also