Skip to content

Files

Latest commit

 

History

History
30 lines (22 loc) · 385 Bytes

no-jsdoc-type-tabs.md

File metadata and controls

30 lines (22 loc) · 385 Bytes

interfaced/no-jsdoc-type-tabs

Disallow tab characters in JSDoc type.

Examples

Correct code for this rule:

/**
 * @type {{
 *     key: number
 *}}
 */

Incorrect code for this rule:

/**
 * @type {{
 * \t key: number
 * }}
 */

Resources