`, for instance or on `` items; assistive technologies provide affordances to users to find and traverse these containers. Most elements that require a tabindex -- ``, ``, ``, `` -- have it already. Your application might require an exception to this rule in the case of an element that captures incoming tab traversal for a composite widget. In that case, turn off this rule on a per instance basis. This is an uncommon case. ### References 1. [Fundamental Keyboard Navigation Conventions](https://www.w3.org/TR/wai-aria-practices-1.1/#kbd_generalnav) ## Rule details The recommended options for this rule allow `tabIndex` on elements with the noninteractive `tabpanel` role. Adding `tabIndex` to a tabpanel is a recommended practice in some instances. ```javascript 'jsx-a11y/no-noninteractive-tabindex': [ 'error', { tags: [], roles: ['tabpanel'], }, ] ``` ### Succeed ```jsx ``` ### Fail ```jsx ```