You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor(core): remove no-confusing-void-expression suppressions in defineMiddleware
Remove 3 eslint-disable comments for @typescript-eslint/no-confusing-void-expression
in defineMiddleware.ts. The next() function returns Promise<void>, so capturing or
returning the void result was unnecessary. Now we simply await next() without
capturing the result.
Kaizen: daily tech debt reduction
0 commit comments