zebzhao/indent.js

Multiline comment fails to indent properly

Closed this issue · 0 comments

Multiline comments inside function definitions causes problems with indentation rules.

Example:

function test () {
  /*Test
  Multiline comment
*/
if (test) return;
}