From fe87ace367e084d7464b322cf21650e622f954c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josh=20Goldberg=20=E2=9C=A8?= Date: Sun, 11 Aug 2024 22:50:10 -0400 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Brett Zamir --- .README/README.md | 2 +- src/index.js | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.README/README.md b/.README/README.md index b84987e0..bd621e78 100644 --- a/.README/README.md +++ b/.README/README.md @@ -54,7 +54,7 @@ The general starting rulesets you can extend from in flat config are: * `jsdoc.configs['flat/recommended']`: Recommended starting rules for enforcing proper tag values, that common tags exist, and that tags are formatted and styled consistently * `jsdoc.configs['flat/recommended-error']`: The same, reporting with failing errors instead of mere warnings -* `jsdoc.configs['flat/recommended-typescript']`: A similar recommended starting list, adjusted for projects using TypeScript syntax (and not just "typescript" `mode`) +* `jsdoc.configs['flat/recommended-typescript']`: A similar recommended starting list, adjusted for projects using TypeScript syntax (and not just the "typescript" `mode` setting) * `jsdoc.configs['flat/recommended-typescript-error']`: The same, reporting with failing errors instead of mere warnings * `jsdoc.configs['flat/recommended-typescript-flavor']`: A similar recommended starting list, adjusted for projects using JavaScript syntax (source files that are still `.js`) but using TypeScript flavor within JSDoc (i.e., the default "typescript" `mode` in `eslint-plugin-jsdoc`) * `jsdoc.configs['flat/recommended-typescript-flavor-error']`: The same, reporting with failing errors instead of mere warnings diff --git a/src/index.js b/src/index.js index fd6579c0..1a053421 100644 --- a/src/index.js +++ b/src/index.js @@ -291,7 +291,6 @@ const createLogicalTypescriptRuleset = createStandaloneRulesetFactory([ 'jsdoc/require-returns-check', 'jsdoc/require-yields-check', 'jsdoc/no-defaults', - 'jsdoc/no-multi-asterisks', 'jsdoc/no-types', 'jsdoc/no-undefined-types', 'jsdoc/valid-types',