Rule: html-anchor-require-href
Disallow the use of anchor tags without an href attribute in HTML templates. Use if you want to perform an action without having the user navigated to a new URL.
Anchor tags without href are unfocusable if user is using keyboard navigation, or is unseen by screen readers.
<a href="https://alink.com">I'm a real link</a><a data-action="click->doSomething">I'm a fake link</a>