Skip to content

Commit 1502f62

Browse files
committed
lint: Fix
1 parent 490475d commit 1502f62

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/converters/comments/convertFileComments.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ export const convertFileComments = async (
1818
if (fileContent instanceof Error) {
1919
if (fileContent.code === "EISDIR") {
2020
return undefined;
21-
} else {
22-
return fileContent;
2321
}
22+
23+
return fileContent;
2424
}
2525

2626
const comments = parseFileComments(filePath, fileContent);

0 commit comments

Comments
 (0)