Pattern: Missing parameter name
Issue: -
Each @param tag must include the parameter name that it documents. A type alone is not sufficient for proper documentation.
Example of incorrect code:
/**
* @param {string}
* @param {number}
*/
function updateUser(name, age) {}
Example of correct code:
/**
* @param {string} name
* @param {number} age
*/
function updateUser(name, age) {}