Reports and optionally removes blocks with whitespace only.
Auto-removes blank blocks with whitespace only.
A single options object has the following properties.
Whether or not to auto-remove the blank block. Defaults to false.
| Context | everywhere |
| Tags | N/A |
| Recommended | false |
| Settings | |
| Options | enableFixer |
The following patterns are considered problems:
/** */
// "jsdoc/no-blank-blocks": ["error"|"warn", {"enableFixer":true}]
// Message: No empty blocks
/**
*/
// "jsdoc/no-blank-blocks": ["error"|"warn", {"enableFixer":true}]
// Message: No empty blocks
/**
*
*/
// "jsdoc/no-blank-blocks": ["error"|"warn", {"enableFixer":true}]
// Message: No empty blocks
/**
*
*
*/
// "jsdoc/no-blank-blocks": ["error"|"warn", {"enableFixer":true}]
// Message: No empty blocks
/**
*
*
*/
// "jsdoc/no-blank-blocks": ["error"|"warn", {"enableFixer":false}]
// Message: No empty blocks
/**
*
*
*/
// Message: No empty blocksThe following patterns are not considered problems:
/** @tag */
/**
* Text
*/
/**
* @tag
*/