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