Skip to content

Commit

Permalink
fix(eslint-react): use correct rule name for jsx-a11y/no-onchange πŸ€¦β€β™‚οΈ
Browse files Browse the repository at this point in the history
  • Loading branch information
robertrossmann committed Apr 16, 2019
1 parent ebe707e commit 47bfb8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/eslint-config-react/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ module.exports = {

// Enforce usage of onBlur over onChange on select menus for accessibility
// https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/no-onchange.md
'jsx-a11y/no-onchange:': 'warn',
'jsx-a11y/no-onchange': 'warn',

// Enforce explicit role property is not the same as implicit/default role property on element
// https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/no-redundant-roles.md
Expand Down

1 comment on commit 47bfb8c

@andrenanninga
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸ‘

Please sign in to comment.