Skip to content

Commit

Permalink
Fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerrit0 committed Jun 26, 2024
1 parent 0304c26 commit da4f8fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/converter/plugins/CommentPlugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export class CommentPlugin extends ConverterComponent {
private get excludeNotDocumentedKinds(): number {
this._excludeKinds ??= this.application.options
.getValue("excludeNotDocumentedKinds")
.reduce((a, b) => a | (ReflectionKind[b] as number), 0);
.reduce((a, b) => a | ReflectionKind[b], 0);
return this._excludeKinds;
}

Expand Down

0 comments on commit da4f8fd

Please sign in to comment.