Skip to content

Commit

Permalink
Override rule config temporarily to address false positive (#476)
Browse files Browse the repository at this point in the history
* Override config temporarily

* Run prettier
  • Loading branch information
khiga8 committed Aug 28, 2023
1 parent 379041a commit baa4a50
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions lib/configs/react.js
Expand Up @@ -30,5 +30,17 @@ module.exports = {
canvas: ['img'],
},
],
// Remove once https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/pull/950 is shipped.
'jsx-a11y/no-noninteractive-element-to-interactive-role': [
'error',
{
ul: ['listbox', 'menu', 'menubar', 'radiogroup', 'tablist', 'tree', 'treegrid'],
ol: ['listbox', 'menu', 'menubar', 'radiogroup', 'tablist', 'tree', 'treegrid'],
li: ['menuitem', 'menuitemradio', 'menuitemcheckbox', 'option', 'row', 'tab', 'treeitem'],
table: ['grid'],
td: ['gridcell'],
fieldset: ['radiogroup', 'presentation'],
},
],
},
}

0 comments on commit baa4a50

Please sign in to comment.