require-template-description

September 28, 2025 ยท View on GitHub

require-template-description

Options

Contexteverywhere
Tagstemplate
Recommendedfalse
Settings
Options

Failing examples

The following patterns are considered problems:

/**
 * @template {SomeType}
 */
// Message: @template should have a description

Passing examples

The following patterns are not considered problems:

/**
 * @template {SomeType} Has a description
 */

/**
 * @template Has a description
 */