Is there an existing issue for this?
Description Overview
Adding an onScrollEnd or onScrollEndCapture event handler is not recognized as a known property.
this triggers the warning Unknown property 'onScrollEnd' found
<div onScrollEnd={handleScrollEnd}>
issue appears within lib/rules/no-unknown-property.js, DOM_PROPERTY_NAMES_TWO_WORDS
Expected Behavior
this should not trigger the no-unknown-property rule:
<div onScrollEnd={handleScrollEnd} onScrollEndCapture={handleScrollEndCapture}>
eslint-plugin-react version
v7.37.5
eslint version
v8.57.1
node version
v22.16.0