Skip to content

Commit

Permalink
Formatting tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
fbartho committed May 11, 2023
1 parent 0efd6c3 commit 18c3045
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/utils/adjust-comments-on-sorted-nodes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ export const adjustCommentsOnSortedNodes = (
originalDeclarationNodes: ImportDeclaration[],
finalNodes: ImportOrLine[],
) => {

const outputDeclarationNodes: ImportDeclaration[] = finalNodes.filter(
(n) => n.type === 'ImportDeclaration',
) as ImportDeclaration[];
Expand All @@ -43,7 +42,6 @@ export const adjustCommentsOnSortedNodes = (
).map((s) => removeComments(s));
}
return noDirectCommentsNode;

});

attachCommentsToOutputNodes(registry, finalNodesClone);
Expand Down

0 comments on commit 18c3045

Please sign in to comment.