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
docs(linter): Add configuration option docs for jsdoc/require-yields rule. (#15024)
Part of #14743.
Generated docs:
```md
## Configuration
This rule accepts a configuration object with the following properties:
### exemptedBy
type: `string[]`
default: `["inheritdoc"]`
Functions with these tags will be exempted from the lint rule.
### forceRequireYields
type: `boolean`
default: `false`
When `true`, all generator functions must have a `@yields` tag, even if they don't yield a value or have an empty body.
### withGeneratorTag
type: `boolean`
default: `false`
When `true`, require `@yields` when a `@generator` tag is present.
```
0 commit comments