eslint-plugin-jsdoc 57.2.1 → 58.1.0

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.
package/src/rules.d.ts CHANGED
@@ -410,6 +410,12 @@ export interface Rules {
410
410
  }
411
411
  ];
412
412
 
413
+ /** Reports use of `any` or `*` type */
414
+ "jsdoc/reject-any-type": [];
415
+
416
+ /** Reports use of `Function` type */
417
+ "jsdoc/reject-function-type": [];
418
+
413
419
  /** Requires that each JSDoc line starts with an `*`. */
414
420
  "jsdoc/require-asterisk-prefix":
415
421
  | []
@@ -557,7 +563,7 @@ export interface Rules {
557
563
  }
558
564
  ];
559
565
 
560
- /** Requires a type for @next tags */
566
+ /** Requires a type for `@next` tags */
561
567
  "jsdoc/require-next-type": [];
562
568
 
563
569
  /** Requires that all function parameters are documented. */
@@ -585,6 +591,7 @@ export interface Rules {
585
591
  enableRootFixer?: boolean;
586
592
  exemptedBy?: string[];
587
593
  ignoreWhenAllParamsMissing?: boolean;
594
+ interfaceExemptsParamsCheck?: boolean;
588
595
  unnamedRootBase?: string[];
589
596
  useDefaultObjectProperties?: boolean;
590
597
  }
@@ -748,7 +755,7 @@ export interface Rules {
748
755
  }
749
756
  ];
750
757
 
751
- /** Requires a type for @throws tags */
758
+ /** Requires a type for `@throws` tags */
752
759
  "jsdoc/require-throws-type": [];
753
760
 
754
761
  /** Requires yields are documented. */
@@ -790,7 +797,7 @@ export interface Rules {
790
797
  }
791
798
  ];
792
799
 
793
- /** Requires a type for @yields tags */
800
+ /** Requires a type for `@yields` tags */
794
801
  "jsdoc/require-yields-type": [];
795
802
 
796
803
  /** Sorts tags by a specified sequence according to tag name. */