Skip to content

Commit

Permalink
#290 ESLint: Partially disable jsx-a11y/interactive-supports-focus
Browse files Browse the repository at this point in the history
…with comment
  • Loading branch information
zaki-yama committed Mar 25, 2019
1 parent 2a67e65 commit 8284ab9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ module.exports = {
'jsx-a11y/no-noninteractive-tabindex': 2,
'jsx-a11y/role-has-required-aria-props': 2,
'jsx-a11y/anchor-is-valid': 1,
'jsx-a11y/interactive-supports-focus': 1,
'jsx-a11y/interactive-supports-focus': 2,
'jsx-a11y/label-has-associated-control': 1
}
};
1 change: 1 addition & 0 deletions src/scripts/Lookup.js
Original file line number Diff line number Diff line change
Expand Up @@ -487,6 +487,7 @@ class LookupCandidateList extends Component {
}
};
return (
// eslint-disable-next-line jsx-a11y/interactive-supports-focus
<div
ref={handleDOMRef}
className={lookupMenuClassNames}
Expand Down

0 comments on commit 8284ab9

Please sign in to comment.