Skip to content

Commit

Permalink
fix(eslint-plugin) indent: fix false positive on type parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
scottohara committed Mar 28, 2019
1 parent fb47d10 commit 7d0e2b7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/eslint-plugin/src/rules/indent.ts
Expand Up @@ -76,6 +76,7 @@ const KNOWN_NODES = new Set([
AST_NODE_TYPES.TSTypeOperator,
AST_NODE_TYPES.TSTypeParameter,
AST_NODE_TYPES.TSTypeParameterDeclaration,
AST_NODE_TYPES.TSTypeParameterInstantiation,
AST_NODE_TYPES.TSTypeReference,
AST_NODE_TYPES.TSUnionType,
]);
Expand Down

0 comments on commit 7d0e2b7

Please sign in to comment.