```js window.addEventListener('touchmove', touchMove, { passive: false }); ``` This should not trigger a `github/require-passive-events` warning because I've explicitly passed `passive: false`.
This should not trigger a
github/require-passive-eventswarning because I've explicitly passedpassive: false.