User @OmgImAlexis requested that check-alignment be changed to have alignment based on the function or context that follows a comment, rather than the top of the jsdoc block.
For example:
module.exports = function (si) {
/**
* Desc
*
* @param {number} foo
*/
function quux(foo) {
}
};
...should be fixed to:
module.exports = function (si) {
/**
* Desc
*
* @param {number} foo
*/
function quux(foo) {
}
};
not to:
module.exports = function (si) {
/**
* Desc
*
* @param {number} foo
*/
function quux(foo) {
}
};