eslint-plugin-jsdoc 62.9.0 → 63.0.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.
Files changed (65) hide show
  1. package/dist/cjs/iterateJsdoc.d.ts +1 -1
  2. package/dist/exportParser.cjs +1 -1
  3. package/dist/exportParser.cjs.map +1 -1
  4. package/dist/iterateJsdoc.cjs +3 -2
  5. package/dist/iterateJsdoc.cjs.map +1 -1
  6. package/dist/iterateJsdoc.d.ts +1 -1
  7. package/dist/rules/emptyTags.cjs +14 -1
  8. package/dist/rules/emptyTags.cjs.map +1 -1
  9. package/dist/rules/implementsOnClasses.cjs +1 -1
  10. package/dist/rules/implementsOnClasses.cjs.map +1 -1
  11. package/dist/rules/matchDescription.cjs +1 -1
  12. package/dist/rules/matchDescription.cjs.map +1 -1
  13. package/dist/rules/matchName.cjs +1 -1
  14. package/dist/rules/matchName.cjs.map +1 -1
  15. package/dist/rules/noDefaults.cjs +1 -1
  16. package/dist/rules/noDefaults.cjs.map +1 -1
  17. package/dist/rules/noMissingSyntax.cjs +1 -1
  18. package/dist/rules/noMissingSyntax.cjs.map +1 -1
  19. package/dist/rules/noRestrictedSyntax.cjs +1 -1
  20. package/dist/rules/noRestrictedSyntax.cjs.map +1 -1
  21. package/dist/rules/noTypes.cjs +1 -1
  22. package/dist/rules/noTypes.cjs.map +1 -1
  23. package/dist/rules/requireDescription.cjs +1 -1
  24. package/dist/rules/requireDescription.cjs.map +1 -1
  25. package/dist/rules/requireExample.cjs +1 -1
  26. package/dist/rules/requireExample.cjs.map +1 -1
  27. package/dist/rules/requireJsdoc.cjs +1 -1
  28. package/dist/rules/requireJsdoc.cjs.map +1 -1
  29. package/dist/rules/requireParam.cjs +1 -1
  30. package/dist/rules/requireParam.cjs.map +1 -1
  31. package/dist/rules/requireParamDescription.cjs +1 -1
  32. package/dist/rules/requireParamDescription.cjs.map +1 -1
  33. package/dist/rules/requireParamName.cjs +1 -1
  34. package/dist/rules/requireParamName.cjs.map +1 -1
  35. package/dist/rules/requireParamType.cjs +1 -1
  36. package/dist/rules/requireParamType.cjs.map +1 -1
  37. package/dist/rules/requireReturnsDescription.cjs +1 -1
  38. package/dist/rules/requireReturnsDescription.cjs.map +1 -1
  39. package/dist/rules/requireReturnsType.cjs +1 -1
  40. package/dist/rules/requireReturnsType.cjs.map +1 -1
  41. package/dist/rules/requireThrows.cjs +1 -1
  42. package/dist/rules/requireThrows.cjs.map +1 -1
  43. package/dist/rules.d.ts +16 -16
  44. package/package.json +27 -39
  45. package/src/exportParser.js +1 -1
  46. package/src/iterateJsdoc.js +5 -2
  47. package/src/rules/emptyTags.js +14 -0
  48. package/src/rules/implementsOnClasses.js +1 -1
  49. package/src/rules/matchDescription.js +1 -1
  50. package/src/rules/matchName.js +1 -1
  51. package/src/rules/noDefaults.js +1 -1
  52. package/src/rules/noMissingSyntax.js +1 -1
  53. package/src/rules/noRestrictedSyntax.js +1 -1
  54. package/src/rules/noTypes.js +1 -1
  55. package/src/rules/requireDescription.js +1 -1
  56. package/src/rules/requireExample.js +1 -1
  57. package/src/rules/requireJsdoc.js +1 -1
  58. package/src/rules/requireParam.js +1 -1
  59. package/src/rules/requireParamDescription.js +1 -1
  60. package/src/rules/requireParamName.js +1 -1
  61. package/src/rules/requireParamType.js +1 -1
  62. package/src/rules/requireReturnsDescription.js +1 -1
  63. package/src/rules/requireReturnsType.js +1 -1
  64. package/src/rules/requireThrows.js +1 -1
  65. package/src/rules.d.ts +16 -16
package/src/rules.d.ts CHANGED
@@ -575,7 +575,7 @@ export interface Rules {
575
575
  * expression, i.e., `@callback` or `@function` (or its aliases `@func` or
576
576
  * `@method`) (including those associated with an `@interface`).
577
577
  *
578
- * See the ["AST and Selectors"](../#advanced-ast-and-selectors)
578
+ * See the ["AST and Selectors"](../advanced.md#ast-and-selectors)
579
579
  * section of our Advanced docs for more on the expected format.
580
580
  */
581
581
  contexts?: (
@@ -705,7 +705,7 @@ export interface Rules {
705
705
  * `FunctionExpression`). Set to `"any"` if you want the rule to apply to any
706
706
  * JSDoc block throughout your files.
707
707
  *
708
- * See the ["AST and Selectors"](../#advanced-ast-and-selectors)
708
+ * See the ["AST and Selectors"](../advanced.md#ast-and-selectors)
709
709
  * section of our Advanced docs for more on the expected format.
710
710
  */
711
711
  contexts?: (
@@ -900,7 +900,7 @@ export interface Rules {
900
900
  /**
901
901
  * AST to confine the allowing or disallowing to JSDoc blocks
902
902
  * associated with a particular context. See the
903
- * ["AST and Selectors"](../#advanced-ast-and-selectors)
903
+ * ["AST and Selectors"](../advanced.md#ast-and-selectors)
904
904
  * section of our Advanced docs for more on the expected format.
905
905
  */
906
906
  context?: string;
@@ -1087,7 +1087,7 @@ export interface Rules {
1087
1087
  * expression, i.e., `@callback` or `@function` (or its aliases `@func` or
1088
1088
  * `@method`) (including those associated with an `@interface`).
1089
1089
  *
1090
- * See the ["AST and Selectors"](../#advanced-ast-and-selectors)
1090
+ * See the ["AST and Selectors"](../advanced.md#ast-and-selectors)
1091
1091
  * section of our Advanced docs for more on the expected format.
1092
1092
  */
1093
1093
  contexts?: (
@@ -1133,7 +1133,7 @@ export interface Rules {
1133
1133
  * function declaration or expression, i.e., `@callback` or `@function` (or its
1134
1134
  * aliases `@func` or `@method`) (including those associated with an `@interface`).
1135
1135
  *
1136
- * See the ["AST and Selectors"](../#advanced-ast-and-selectors)
1136
+ * See the ["AST and Selectors"](../advanced.md#ast-and-selectors)
1137
1137
  * section of our Advanced docs for more on the expected format.
1138
1138
  */
1139
1139
  contexts?: (
@@ -1215,7 +1215,7 @@ export interface Rules {
1215
1215
  * function declaration or expression, i.e., `@callback` or `@function` (or its
1216
1216
  * aliases `@func` or `@method`) (including those associated with an `@interface`).
1217
1217
  *
1218
- * See the ["AST and Selectors"](../#advanced-ast-and-selectors)
1218
+ * See the ["AST and Selectors"](../advanced.md#ast-and-selectors)
1219
1219
  * section of our Advanced docs for more on the expected format.
1220
1220
  */
1221
1221
  contexts: (
@@ -1248,7 +1248,7 @@ export interface Rules {
1248
1248
  * expression, i.e., `@callback` or `@function` (or its aliases `@func` or
1249
1249
  * `@method`) (including those associated with an `@interface`).
1250
1250
  *
1251
- * See the ["AST and Selectors"](../#advanced-ast-and-selectors)
1251
+ * See the ["AST and Selectors"](../advanced.md#ast-and-selectors)
1252
1252
  * section of our Advanced docs for more on the expected format.
1253
1253
  */
1254
1254
  contexts?: (
@@ -1396,7 +1396,7 @@ export interface Rules {
1396
1396
  * expression, i.e., `@callback` or `@function` (or its aliases `@func` or
1397
1397
  * `@method`) (including those associated with an `@interface`).
1398
1398
  *
1399
- * See the ["AST and Selectors"](../#advanced-ast-and-selectors)
1399
+ * See the ["AST and Selectors"](../advanced.md#ast-and-selectors)
1400
1400
  * section of our Advanced docs for more on the expected format.
1401
1401
  */
1402
1402
  contexts?: (
@@ -1495,7 +1495,7 @@ export interface Rules {
1495
1495
  * `FunctionExpression`). Set to `"any"` if you want the rule to apply to any
1496
1496
  * JSDoc block throughout your files.
1497
1497
  *
1498
- * See the ["AST and Selectors"](../#advanced-ast-and-selectors)
1498
+ * See the ["AST and Selectors"](../advanced.md#ast-and-selectors)
1499
1499
  * section of our Advanced docs for more on the expected format.
1500
1500
  */
1501
1501
  contexts?: (
@@ -1681,7 +1681,7 @@ export interface Rules {
1681
1681
  * Note that you may need to disable `require` items (e.g., `MethodDefinition`)
1682
1682
  * if you are specifying a more precise form in `contexts` (e.g., `MethodDefinition:not([accessibility="private"] > FunctionExpression`).
1683
1683
  *
1684
- * See the ["AST and Selectors"](../#advanced-ast-and-selectors)
1684
+ * See the ["AST and Selectors"](../advanced.md#ast-and-selectors)
1685
1685
  * section of our Advanced docs for more on the expected format.
1686
1686
  */
1687
1687
  contexts?: (
@@ -1938,7 +1938,7 @@ export interface Rules {
1938
1938
  * `TSMethodSignature` in TypeScript or restricting the contexts
1939
1939
  * which are checked.
1940
1940
  *
1941
- * See the ["AST and Selectors"](../#advanced-ast-and-selectors)
1941
+ * See the ["AST and Selectors"](../advanced.md#ast-and-selectors)
1942
1942
  * section of our Advanced docs for more on the expected format.
1943
1943
  */
1944
1944
  contexts?: (
@@ -2090,7 +2090,7 @@ export interface Rules {
2090
2090
  * expression, i.e., `@callback` or `@function` (or its aliases `@func` or
2091
2091
  * `@method`) (including those associated with an `@interface`).
2092
2092
  *
2093
- * See the ["AST and Selectors"](../#advanced-ast-and-selectors)
2093
+ * See the ["AST and Selectors"](../advanced.md#ast-and-selectors)
2094
2094
  * section of our Advanced docs for more on the expected format.
2095
2095
  */
2096
2096
  contexts?: (
@@ -2134,7 +2134,7 @@ export interface Rules {
2134
2134
  * expression, i.e., `@callback` or `@function` (or its aliases `@func` or
2135
2135
  * `@method`) (including those associated with an `@interface`).
2136
2136
  *
2137
- * See the ["AST and Selectors"](../#advanced-ast-and-selectors)
2137
+ * See the ["AST and Selectors"](../advanced.md#ast-and-selectors)
2138
2138
  * section of our Advanced docs for more on the expected format.
2139
2139
  */
2140
2140
  contexts?: (
@@ -2165,7 +2165,7 @@ export interface Rules {
2165
2165
  * expression, i.e., `@callback` or `@function` (or its aliases `@func` or
2166
2166
  * `@method`) (including those associated with an `@interface`).
2167
2167
  *
2168
- * See the ["AST and Selectors"](../#advanced-ast-and-selectors)
2168
+ * See the ["AST and Selectors"](../advanced.md#ast-and-selectors)
2169
2169
  * section of our Advanced docs for more on the expected format.
2170
2170
  */
2171
2171
  contexts?: (
@@ -2394,7 +2394,7 @@ export interface Rules {
2394
2394
  * expression, i.e., `@callback` or `@function` (or its aliases `@func` or
2395
2395
  * `@method`) (including those associated with an `@interface`).
2396
2396
  *
2397
- * See the ["AST and Selectors"](../#advanced-ast-and-selectors)
2397
+ * See the ["AST and Selectors"](../advanced.md#ast-and-selectors)
2398
2398
  * section of our Advanced docs for more on the expected format.
2399
2399
  */
2400
2400
  contexts?: (
@@ -2425,7 +2425,7 @@ export interface Rules {
2425
2425
  * expression, i.e., `@callback` or `@function` (or its aliases `@func` or
2426
2426
  * `@method`) (including those associated with an `@interface`).
2427
2427
  *
2428
- * See the ["AST and Selectors"](../#advanced-ast-and-selectors)
2428
+ * See the ["AST and Selectors"](../advanced.md#ast-and-selectors)
2429
2429
  * section of our Advanced docs for more on the expected format.
2430
2430
  */
2431
2431
  contexts?: (