Hey,
I wonder why this plugin is not supporting a single empty line after the jsdoc:
/**
* @return string
*/
function foo()
{
return 'bar';
}
At the moment only docked jsdocs like this are detected:
/**
* @return string
*/
function foo()
{
return 'bar';
}
A similar TSLint rule named completed-docs for example is okay with that.