require-next-description
Requires a description for (non-standard) `@next` tags.
|||
|---|---|
|Context|everywhere|
|Tags|`next`|
|Recommended|false|
|Settings||
|Options||
## Failing examples
The following patterns are considered problems:
````ts
/**
* @next {SomeType}
*/
// Message: @next should have a description
````
## Passing examples
The following patterns are not considered problems:
````ts
/**
* @next {SomeType} Has a description
*/
````