From da4f8fdc0a0978d3dd71403d31d1bfa3beae52ac Mon Sep 17 00:00:00 2001 From: Gerrit Birkeland Date: Tue, 25 Jun 2024 20:44:04 -0600 Subject: [PATCH] Fix lint issue --- src/lib/converter/plugins/CommentPlugin.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/converter/plugins/CommentPlugin.ts b/src/lib/converter/plugins/CommentPlugin.ts index d227b87ae..27f52f18b 100644 --- a/src/lib/converter/plugins/CommentPlugin.ts +++ b/src/lib/converter/plugins/CommentPlugin.ts @@ -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; }