Motivation
I'd like to use the recommended ruleset from eslint-plugin-jsdoc only to enforce that JSDoc comments are correct in TypeScript repos. I don't want to enforce that they exist, just that if they do exist they're correct.
Current behavior
Right now, the steps are:
- Extend from
plugin:jsdoc/recommended-typescript-error
- Manually disable
jsdoc/require-* rules (jsdoc, param, returns, yields)
Desired behavior
My preference would be to have a breaking change to remove those rules from plugin:jsdoc/recommended-typescript and put them into a new preset config like stylistic-typescript. This would mirror how typescript-eslint has separate "stylistic" configs.
Failing that, it'd be nice to have a preset config with a name like plugin:jsdoc/logical.
Alternatives considered
Users like me can make our own shareable configs... but it'd be nice to not have to wrap around jsdoc's configs that way.
Motivation
I'd like to use the recommended ruleset from
eslint-plugin-jsdoconly to enforce that JSDoc comments are correct in TypeScript repos. I don't want to enforce that they exist, just that if they do exist they're correct.Current behavior
Right now, the steps are:
plugin:jsdoc/recommended-typescript-errorjsdoc/require-*rules (jsdoc,param,returns,yields)Desired behavior
My preference would be to have a breaking change to remove those rules from
plugin:jsdoc/recommended-typescriptand put them into a new preset config likestylistic-typescript. This would mirror how typescript-eslint has separate "stylistic" configs.Failing that, it'd be nice to have a preset config with a name like
plugin:jsdoc/logical.Alternatives considered
Users like me can make our own shareable configs... but it'd be nice to not have to wrap around jsdoc's configs that way.