jsdoc/require-description warning
Requires that all functions have a description.
Examples
❌ Incorrect
/**
 *
 */
function quux () {
}
// Message: Missing JSDoc block description.
✅ Correct
/**
 * Has an implicit description
 */
function quux () {
}
