For a file that uses tab indentation, try running format:
class Foo {
/**
* @param {string} argument - This is a param description.
*/
example(argument) {
console.log(argument);
}
}
Bug
This incorrectly moves the spaces to the start of the doc comment lines so you end up with space tab *
.
class Foo {
/**
* @param {string} argument - This is a param description.
*/
example(argument) {
console.log(argument);
}
}