sindresorhus/eslint-plugin-unicorn

Rule proposal: Prefer object form of `addEventListener`

Chiusa

#2067 aperta il 10 apr 2023

 (6 commenti) (7 reazioni) (0 assegnatari)JavaScript (468 fork)user submission
help wantednew rule

Metriche repository

Star
 (5022 stelle)
Metriche merge PR
 (Merge medio 4h 30m) (26 PR mergiate in 30 g)

Descrizione

Description

addEventListener has a legacy signature where it takes useCapture boolean third argument. The options form should be preferred as it is more flexible.

Fail

el.addEventListener('click', () => {}, true)

Pass

el.addEventListener('click', () => {}, {capture: true})

Guida contributor