Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix(parser): Make eslint traverse enum id (#383)
  • Loading branch information
bradzacher committed Mar 30, 2019
1 parent f29d1c9 commit 492b737
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/parser/src/visitor-keys.ts
Expand Up @@ -65,7 +65,7 @@ export const visitorKeys = eslintVisitorKeys.unionWith({
'params',
'returnType',
],
TSEnumDeclaration: ['members'],
TSEnumDeclaration: ['id', 'members'],
TSEnumMember: ['id', 'initializer'],
TSExportAssignment: ['expression'],
TSExportKeyword: [],
Expand Down

0 comments on commit 492b737

Please sign in to comment.