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