WebStorm: auto-align JSDoc tag values
Plop!
Is there any smart way to turn that:
/**
* I'm a description
* @param {Number} num1 First number to use
* @param {Number} num2 Second number to use
* @param {someLongTypeName} obj I'm an object
* @param {String} quiteALongVariableName And I'm a string
* @returns {Boolean} Some kind of return value
*/
Into that:
/**
* I'm a description
* @param {Number} num1 First number to use
* @param {Number} num2 Second number to use
* @param {someLongTypeName} obj I'm an object
* @param {String} quiteALongVariableName And I'm a string
* @returns {Boolean} Some kind of return value
*/
Without doing it manually? I haven't found a specific option for it.
Thanks for your help and attention.
Please sign in to leave a comment.
Not currently possible. Please vote for https://youtrack.jetbrains.com/issue/WEB-11619