Skip to content

Commit

Permalink
Merge pull request #506 from mahendrakulkarni177/master
Browse files Browse the repository at this point in the history
[Docs] corrected no-noninteractive-element-to-interactive-role.md file
  • Loading branch information
ljharb committed Dec 4, 2018
2 parents 59240fe + 87debc0 commit e53906d
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions docs/rules/no-noninteractive-element-to-interactive-role.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,15 @@ The recommended options for this rule allow several common interactive roles to
```
{
'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', 'option', 'row', 'tab', 'treeitem'],
table: ['grid'],
td: ['gridcell'],
},
'error',
{
ul: ['listbox', 'menu', 'menubar', 'radiogroup', 'tablist', 'tree', 'treegrid'],
ol: ['listbox', 'menu', 'menubar', 'radiogroup', 'tablist', 'tree', 'treegrid'],
li: ['menuitem', 'option', 'row', 'tab', 'treeitem'],
table: ['grid'],
td: ['gridcell'],
},
]
}
```

Expand Down

0 comments on commit e53906d

Please sign in to comment.