feat: enable oxlint suspicious category, fix 24 violations (#22727)

This commit is contained in:
Kit Langton 2026-04-15 22:53:10 -04:00 committed by GitHub
commit 702f741267
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
20 changed files with 49 additions and 22 deletions

View file

@ -128,6 +128,7 @@ export const { use: useGlobalSDK, provider: GlobalSDKProvider } = createSimpleCo
if (started) return run
started = true
run = (async () => {
// oxlint-disable-next-line no-unmodified-loop-condition -- `started` is set to false by stop() which also aborts; both flags are checked to allow graceful exit
while (!abort.signal.aborted && started) {
attempt = new AbortController()
lastEventAt = Date.now()