Skip to content

jsx_a11y/no-redundant-roles Correctness

🛠️ An auto-fix is available for this rule.

What it does

Enforces that the explicit role property is not the same as implicit/default role property on element.

Why is this bad?

Redundant roles can lead to confusion and verbosity in the codebase.

Examples

Examples of incorrect code for this rule:

jsx
<nav role="navigation" />

Examples of correct code for this rule:

jsx
<nav />

How to use

To enable this rule using the config file or in the CLI, you can use:

json
{
    "plugins": ["jsx-a11y"],
    "rules": {
        "jsx-a11y/no-redundant-roles": "error"
    }
}
bash
oxlint --deny jsx-a11y/no-redundant-roles --jsx-a11y-plugin

References

Released under the MIT License.