How to disable "non-interactive elements with click handlers must have at least one keyboard listener" rule in eslint?

Viewed 1689

Whenever I write an onClick event attribute without an onKeyUp for example, the error Visible, non-interactive elements with click handlers must have at least one keyboard listener is raised by eslint and I can't figure out how to disable this rule. How do I do this?

2 Answers

'jsx-a11y/click-events-have-key-events': 'off' in your eslint config should disable it.

Under rules in .eslintrc.js

vuejs-accessibility/click-events-have-key-events': 'off',
Related