You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|:heavy_check_mark:||[require-returns-check](./docs/rules/require-returns-check.md#readme)| Requires a return statement in function body if a `@returns` tag is specified in JSDoc comment(and reports if multiple `@returns` tags are present). |
480
480
|:heavy_check_mark:||[require-returns-description](./docs/rules/require-returns-description.md#readme)| Requires that the `@returns` tag has a `description` value (not including `void`/`undefined` type returns). |
481
481
|:heavy_check_mark: (Off in TS; On in TS flavor)||[require-returns-type](./docs/rules/require-returns-type.md#readme)| Requires that `@returns` tag has type value (in curly brackets). |
482
+
|||[require-tags](./docs/rules/require-tags.md#readme)| Requires tags be present, optionally for specific contexts |
482
483
|||[require-template](./docs/rules/require-template.md#readme)| Requires `@template` tags be present when type parameters are used. |
483
484
|||[require-throws](./docs/rules/require-throws.md#readme)| Requires that throw statements are documented with `@throws` tags. |
484
485
|||[require-throws-description](./docs/rules/require-throws-description.md#readme)| Requires a description for `@throws` tags |
|:heavy_check_mark:||[require-yields-check](./docs/rules/require-yields-check.md#readme)| Ensures that if a `@yields` is present that a `yield` (or `yield` with a value) is present in the function body (or that if a `@next` is present that there is a yield with a return value present). |
488
489
|||[require-yields-description](./docs/rules/require-yields-description.md#readme)| Requires a description for `@yields` tags |
489
490
|:heavy_check_mark:||[require-yields-type](./docs/rules/require-yields-type.md#readme)| Requires a type for `@yields` tags |
490
-
|||[required-tags](./docs/rules/required-tags.md#readme)| Requires tags be present, optionally for specific contexts |
491
491
||:wrench:|[sort-tags](./docs/rules/sort-tags.md#readme)| Sorts tags by a specified sequence according to tag name, optionally adding line breaks between tag groups. |
492
492
|:heavy_check_mark:|:wrench:|[tag-lines](./docs/rules/tag-lines.md#readme)| Enforces lines (or no lines) between tags. |
493
493
||:wrench:|[text-escaping](./docs/rules/text-escaping.md#readme)| Auto-escape certain characters that are input within block and tag descriptions. |
0 commit comments