better-comments
better-comments copied to clipboard
Not working for multiline comments in JavaScript
Better Comments Issue
I used this with JavaScript and I tested it with multiline comments and it didn't work.
Actually it did work for me except for the ones that are like these:
/* TODO: Fix bugs */
/** TODO: Fix Bugs */
The same goes for TypeScript.
Here's another example:
const random = `${0 /* TODO: make it random */}`;
Example of not working TypesScript React
Working