Skip to content

Commit 8dfbbc0

Browse files
ci(lint): auto-fix
1 parent 9eeab0c commit 8dfbbc0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/typescript-plugin/lib/requests/componentInfos.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ function generateCommentMarkdown(parts: ts.SymbolDisplayPart[], jsDocTags: ts.JS
322322
const parsedComment = _symbolDisplayPartsToMarkdown(parts);
323323
const parsedJsDoc = _jsDocTagInfoToMarkdown(jsDocTags);
324324
const content = [parsedComment, parsedJsDoc].filter(str => !!str).join('\n\n');
325-
const deprecated = jsDocTags.some((tag) => tag.name === 'deprecated');
325+
const deprecated = jsDocTags.some(tag => tag.name === 'deprecated');
326326
return {
327327
content,
328328
deprecated

0 commit comments

Comments
 (0)