Skip to content

Commit

Permalink
fix: remove additional space after newline with comment asterisk (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
brettz9 authored and gajus committed Dec 7, 2018
1 parent 3e4c84f commit efdeea4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rules/newlineAfterDescription.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export default iterateJsdoc(({
});

// Add the new line
sourceLines.splice(lastDescriptionLine + 1, 0, indent + ' * ');
sourceLines.splice(lastDescriptionLine + 1, 0, indent + ' *');

return fixer.replaceText(jsdocNode, sourceLines.join('\n'));
});
Expand Down

0 comments on commit efdeea4

Please sign in to comment.