We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b444026 commit 877f9b0Copy full SHA for 877f9b0
src/iterateJsdoc.js
@@ -872,11 +872,8 @@ const getSettings = (context) => {
872
873
// Many rules, e.g., `check-tag-names`
874
mode: context.settings.jsdoc?.mode ??
875
- (context.parserPath?.includes('@typescript-eslint') ?
876
- // Todo: Waiting for TS parser to label itself:
877
- // https://github.com/eslint/eslint/pull/16944
878
- // https://github.com/typescript-eslint/typescript-eslint/issues/6541
879
- // || context.languageOptions?.parser?.meta?.name?.includes('typescript') ?
+ (context.parserPath?.includes('@typescript-eslint') ||
+ context.languageOptions?.parser?.meta?.name?.includes('typescript') ?
880
'typescript' : 'jsdoc'),
881
882
// Many rules
0 commit comments