prefer-add-event-listener-options
UnreleasedConfiguration
rslint.config.ts
Rule Details
Prefer the options-object form of .addEventListener() over the legacy boolean
useCapture argument.
The object form makes the capture behavior explicit and leaves room for other
listener options such as passive, once, and signal.
Examples of incorrect code for this rule:
Examples of correct code for this rule: