Skip to content

Latest commit

 

History

History
42 lines (31 loc) · 798 Bytes

File metadata and controls

42 lines (31 loc) · 798 Bytes

require-next-type

Requires a type on the (non-standard) @next tag. See the jsdoc/require-yields rule for details on this tag.

Context everywhere
Tags next
Recommended true
Settings
Options

Failing examples

The following patterns are considered problems:

/**
 * @next
 */
// Message: @next should have a type

Passing examples

The following patterns are not considered problems:

/**
 * @next {SomeType}
 */