Skip to content
This repository has been archived by the owner on Mar 25, 2021. It is now read-only.

Commit

Permalink
Fixes "no-redundant-jsdoc" exception on this tag
Browse files Browse the repository at this point in the history
```
The 'no-redundant-jsdoc' rule threw an error in 'some-file.ts':
Error: Unexpected tag kind: JSDocThisTag
```

This appears to be similar to #3413
  • Loading branch information
bugsduggan committed May 1, 2019
1 parent 1cb1a0a commit aa3e31c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/rules/noRedundantJsdocRule.ts
Expand Up @@ -79,6 +79,7 @@ function walk(ctx: Lint.WalkContext): void {
break;

case ts.SyntaxKind.JSDocClassTag:
case ts.SyntaxKind.JSDocThisTag:
case ts.SyntaxKind.JSDocTypeTag:
case ts.SyntaxKind.JSDocTypedefTag:
case ts.SyntaxKind.JSDocPropertyTag:
Expand Down

0 comments on commit aa3e31c

Please sign in to comment.