src/content/docs/linter/rules/use-valid-anchor.mdx
import { Tabs, TabItem } from '@astrojs/starlight/components';
<Tabs> <TabItem label="JSX and TSX" icon="seti:javascript"> ## Summary - Rule available since: `v1.0.0` - Diagnostic Category: [`lint/a11y/useValidAnchor`](/reference/diagnostics#diagnostic-category) - This rule is **recommended**, meaning it is enabled by default. - This rule doesn't have a fix. - The default severity of this rule is [**error**](/reference/diagnostics#error). - Sources: - Same as [`jsx-a11y/anchor-is-valid`](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/main/docs/rules/anchor-is-valid.md) - Same as [`qwik/jsx-a`](https://qwik.dev/docs/advanced/eslint/#jsx-a){
"linter": {
"rules": {
"a11y": {
"useValidAnchor": "error"
}
}
}
}
Enforce that all anchors are valid, and they are navigable elements.
The anchor element (<a></a>) - also called hyperlink - is an important element
that allows users to navigate pages, in the same page, same website or on another website.
While before it was possible to attach logic to an anchor element, with the advent of JSX libraries, it's now easier to attach logic to any HTML element, anchors included.
This rule is designed to prevent users from attaching logic at the click of anchors when the href
provided to the anchor element is not valid. Avoid using # symbol inside the href when you are
attaching the logic to the anchor element. If the anchor has logic attached to it with an incorrect href
the rules suggests to turn it to a button, because that's likely what the user wants.
Anchor <a></a> elements should be used for navigation, while <button></button> should be
used for user interaction.
There are many reasons why an anchor should not have a logic with an incorrect href attribute:
For a detailed explanation, check out https://marcysutton.com/links-vs-buttons-in-modern-web-applications
<a href={null}>navigate here</a>
<a href={undefined}>navigate here</a>
<a href>navigate here</a>
<a href="javascript:void(0)">navigate here</a>
<a onClick={something}>navigate here</a>
<a href="https://example.com" onClick={something}>navigate here</a>
<a href={`https://www.javascript.com`}>navigate here</a>
<a href={somewhere}>navigate here</a>
<a {...spread}>navigate here</a>