Enforce an anchor element's href prop value is not just "#". You should use
something more descriptive, or use a button instead.
This rule takes no options
// passes when the `href` is not `#`
<a href="foo#bar"></a>// fails when the `href` is `#`
<a href="#"></a>- This document from webaim.org