Closed
Description
I found this enum
which contains all the types we've been hardcoding in the type guards in node-utils.ts
The import for that enum
import { AST_NODE_TYPES } from '@typescript-eslint/experimental-utils';
We should replace all the hardcoded values in each type guard function (isAwaitExpression
, isIdentifier
, and so on) for the corresponding values from that enum
Originally posted in #201 (comment)