eslint-plugin-jsdoc 54.0.0 → 54.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -375,8 +375,9 @@ export default iterateJsdoc(({
375
375
  })())
376
376
  .concat(...getValidRuntimeIdentifiers(node && (
377
377
  (sourceCode.getScope &&
378
- /* c8 ignore next 2 */
378
+ /* c8 ignore next 3 */
379
379
  sourceCode.getScope(node)) ||
380
+ // @ts-expect-error ESLint 8
380
381
  context.getScope()
381
382
  )))
382
383
  .concat(
@@ -503,8 +504,9 @@ export default iterateJsdoc(({
503
504
  } else if (markVariablesAsUsed && !extraTypes.includes(val)) {
504
505
  if (sourceCode.markVariableAsUsed) {
505
506
  sourceCode.markVariableAsUsed(val);
506
- /* c8 ignore next 3 */
507
+ /* c8 ignore next 4 */
507
508
  } else {
509
+ // @ts-expect-error ESLint 8
508
510
  context.markVariableAsUsed(val);
509
511
  }
510
512
  }
@@ -250,8 +250,9 @@ const isExemptedImplementer = (node, sourceCode, context, settings) => {
250
250
 
251
251
  const interfaceMethodNode = getMethodOnInterface(interfaceName, methodName, node && (
252
252
  (sourceCode.getScope &&
253
- /* c8 ignore next 2 */
253
+ /* c8 ignore next 3 */
254
254
  sourceCode.getScope(node)) ||
255
+ // @ts-expect-error ESLint 8
255
256
  context.getScope()
256
257
  ));
257
258
  if (interfaceMethodNode) {
@@ -11,6 +11,7 @@ const inlineTags = new Set([
11
11
  ]);
12
12
 
13
13
  const jsdocTypePrattKeywords = new Set([
14
+ 'extends',
14
15
  'import',
15
16
  'is',
16
17
  'readonly',