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
Continuing conversation from here typescript-eslint/typescript-eslint#5610 (comment): We (typescript-eslint) generally try not to use string in checking pattern on AST nodes, as it's a little imprecise. We normally check for specific types.
- if ('async' in node && node.async) {+ if (isFunctionLike(node) && node.async) {