Skip to content

Commit da4f8fd

Browse files
committed
Fix lint issue
1 parent 0304c26 commit da4f8fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/converter/plugins/CommentPlugin.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ export class CommentPlugin extends ConverterComponent {
147147
private get excludeNotDocumentedKinds(): number {
148148
this._excludeKinds ??= this.application.options
149149
.getValue("excludeNotDocumentedKinds")
150-
.reduce((a, b) => a | (ReflectionKind[b] as number), 0);
150+
.reduce((a, b) => a | ReflectionKind[b], 0);
151151
return this._excludeKinds;
152152
}
153153

0 commit comments

Comments
 (0)