Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 455 Bytes

File metadata and controls

28 lines (19 loc) · 455 Bytes

interfaced/no-jsdoc-type-multi-spaces

Disallow multiple spaces in JSDoc type.

Fixable: this rule is automatically fixable by --fix.

Examples

Correct code for this rule:

/**
 * @type {string | number}
 */

Incorrect code for this rule:

/**
 * @enum {string  |  number}
 */

Resources