Skip to content

Commit cc8557c

Browse files
committed
fix(formatting): run prettier
1 parent d174207 commit cc8557c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/embedme.lib.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,9 @@ export function embedme(sourceText: string, inputFilePath: string, options: Embe
410410
return getLineNumber(sourceText.substring(0, result.index), result.index, lineEnding);
411411
}
412412
const startingLineNumber = docPartials.join('').split(lineEnding).length - 1;
413-
return startingLineNumber + getLineNumber(sourceText.substring(previousEnd, result.index), result.index, lineEnding);
413+
return (
414+
startingLineNumber + getLineNumber(sourceText.substring(previousEnd, result.index), result.index, lineEnding)
415+
);
414416
})();
415417

416418
const commentInsertion = start.match(/<!--\s*?embedme[ ]+?(\S+?)\s*?-->/);

0 commit comments

Comments
 (0)