-
-
Notifications
You must be signed in to change notification settings - Fork 637
[feature] suggest tabindex 0 or -1 for interactive-supports-focus #952
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
Comments
lb-
added a commit
to lb-/eslint-plugin-jsx-a11y
that referenced
this issue
Oct 23, 2024
Add basic support for Eslint rule suggestions for the `interactive-supports-focus` for tabIndex values when elements are interactive but do not have implicit focusable browser behaviour. These are intentionally not auto-fix but simply optional suggestions to help developers resolve their issue. Fixes jsx-eslint#952 See also jsx-eslint#951
lb-
added a commit
to lb-/eslint-plugin-jsx-a11y
that referenced
this issue
Oct 23, 2024
Add basic support for ESlint rule suggestions for the `interactive-supports-focus` for tabIndex values when elements are interactive but do not have implicit focusable browser behaviour. These are intentionally not auto-fix but simply optional suggestions to help developers resolve their issue. Fixes jsx-eslint#952 See also jsx-eslint#951
lb-
added a commit
to lb-/eslint-plugin-jsx-a11y
that referenced
this issue
Oct 23, 2024
Add basic support for ESlint rule suggestions for the `interactive-supports-focus` for tabIndex values when elements are interactive but do not have implicit focusable browser behaviour. These are intentionally not auto-fix but simply optional suggestions to help developers resolve their issue. Fixes jsx-eslint#952 See also jsx-eslint#951
lb-
added a commit
to lb-/eslint-plugin-jsx-a11y
that referenced
this issue
Oct 23, 2024
Add basic support for ESlint rule suggestions for the `interactive-supports-focus` for tabIndex values when elements are interactive but do not have implicit focusable browser behaviour. These are intentionally not auto-fix but simply optional suggestions to help developers resolve their issue. Fixes jsx-eslint#952 See also jsx-eslint#951
PR up with an implementation for this #1023 |
lb-
added a commit
to lb-/eslint-plugin-jsx-a11y
that referenced
this issue
Oct 25, 2024
Add basic support for ESlint rule suggestions for the `interactive-supports-focus` for tabIndex values when elements are interactive but do not have implicit focusable browser behaviour. These are intentionally not auto-fix but simply optional suggestions to help developers resolve their issue. Fixes jsx-eslint#952 See also jsx-eslint#951
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When
interactive-supports-focus
fails, the only reasonable solution is to add atabindex
of either0
or-1
.Modify
interactive-supports-focus
to havehasSuggestions: true
with asuggest
array with 2 entries for fixing to 0 or -1.Related to #951
The text was updated successfully, but these errors were encountered: