require-template-description
## Options
|||
|---|---|
|Context|everywhere|
|Tags|`template`|
|Recommended|false|
|Settings||
|Options||
## Failing examples
The following patterns are considered problems:
````ts
/**
* @template {SomeType}
*/
// Message: @template should have a description
````
## Passing examples
The following patterns are not considered problems:
````ts
/**
* @template {SomeType} Has a description
*/
/**
* @template Has a description
*/
````