eslint-plugin-jsdoc 46.4.5 → 46.5.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.
Files changed (66) hide show
  1. package/README.md +31 -0
  2. package/dist/alignTransform.js +5 -5
  3. package/dist/alignTransform.js.map +1 -1
  4. package/dist/index.js +21 -10
  5. package/dist/index.js.map +1 -1
  6. package/dist/iterateJsdoc.js +1 -1
  7. package/dist/iterateJsdoc.js.map +1 -1
  8. package/dist/rules/checkExamples.js +12 -6
  9. package/dist/rules/checkExamples.js.map +1 -1
  10. package/package.json +19 -15
  11. package/docs/advanced.md +0 -102
  12. package/docs/rules/check-access.md +0 -193
  13. package/docs/rules/check-alignment.md +0 -169
  14. package/docs/rules/check-examples.md +0 -784
  15. package/docs/rules/check-indentation.md +0 -296
  16. package/docs/rules/check-line-alignment.md +0 -1002
  17. package/docs/rules/check-param-names.md +0 -1035
  18. package/docs/rules/check-property-names.md +0 -244
  19. package/docs/rules/check-syntax.md +0 -80
  20. package/docs/rules/check-tag-names.md +0 -1132
  21. package/docs/rules/check-types.md +0 -1198
  22. package/docs/rules/check-values.md +0 -409
  23. package/docs/rules/empty-tags.md +0 -220
  24. package/docs/rules/implements-on-classes.md +0 -219
  25. package/docs/rules/imports-as-dependencies.md +0 -99
  26. package/docs/rules/informative-docs.md +0 -400
  27. package/docs/rules/match-description.md +0 -1008
  28. package/docs/rules/match-name.md +0 -249
  29. package/docs/rules/multiline-blocks.md +0 -398
  30. package/docs/rules/no-bad-blocks.md +0 -174
  31. package/docs/rules/no-blank-block-descriptions.md +0 -91
  32. package/docs/rules/no-blank-blocks.md +0 -98
  33. package/docs/rules/no-defaults.md +0 -207
  34. package/docs/rules/no-missing-syntax.md +0 -275
  35. package/docs/rules/no-multi-asterisks.md +0 -278
  36. package/docs/rules/no-restricted-syntax.md +0 -383
  37. package/docs/rules/no-types.md +0 -168
  38. package/docs/rules/no-undefined-types.md +0 -789
  39. package/docs/rules/require-asterisk-prefix.md +0 -297
  40. package/docs/rules/require-description-complete-sentence.md +0 -820
  41. package/docs/rules/require-description.md +0 -585
  42. package/docs/rules/require-example.md +0 -390
  43. package/docs/rules/require-file-overview.md +0 -324
  44. package/docs/rules/require-hyphen-before-param-description.md +0 -281
  45. package/docs/rules/require-jsdoc.md +0 -1857
  46. package/docs/rules/require-param-description.md +0 -238
  47. package/docs/rules/require-param-name.md +0 -163
  48. package/docs/rules/require-param-type.md +0 -227
  49. package/docs/rules/require-param.md +0 -1820
  50. package/docs/rules/require-property-description.md +0 -88
  51. package/docs/rules/require-property-name.md +0 -79
  52. package/docs/rules/require-property-type.md +0 -79
  53. package/docs/rules/require-property.md +0 -128
  54. package/docs/rules/require-returns-check.md +0 -1053
  55. package/docs/rules/require-returns-description.md +0 -181
  56. package/docs/rules/require-returns-type.md +0 -144
  57. package/docs/rules/require-returns.md +0 -1191
  58. package/docs/rules/require-throws.md +0 -326
  59. package/docs/rules/require-yields-check.md +0 -544
  60. package/docs/rules/require-yields.md +0 -823
  61. package/docs/rules/sort-tags.md +0 -635
  62. package/docs/rules/tag-lines.md +0 -551
  63. package/docs/rules/text-escaping.md +0 -177
  64. package/docs/rules/valid-types.md +0 -881
  65. package/docs/settings.md +0 -362
  66. package/tsconfig.json +0 -22
@@ -1,551 +0,0 @@
1
- <a name="user-content-tag-lines"></a>
2
- <a name="tag-lines"></a>
3
- # <code>tag-lines</code>
4
-
5
- * [Fixer](#user-content-tag-lines-fixer)
6
- * [Options](#user-content-tag-lines-options)
7
- * [`count` (defaults to 1)](#user-content-tag-lines-options-count-defaults-to-1)
8
- * [`applyToEndTag` (defaults to `true`)](#user-content-tag-lines-options-applytoendtag-defaults-to-true)
9
- * [`startLines` (defaults to `0`)](#user-content-tag-lines-options-startlines-defaults-to-0)
10
- * [`endLines` (defaults to `0`)](#user-content-tag-lines-options-endlines-defaults-to-0)
11
- * [`tags` (default to empty object)](#user-content-tag-lines-options-tags-default-to-empty-object)
12
- * [Context and settings](#user-content-tag-lines-context-and-settings)
13
- * [Failing examples](#user-content-tag-lines-failing-examples)
14
- * [Passing examples](#user-content-tag-lines-passing-examples)
15
-
16
-
17
- Enforces lines (or no lines) between tags.
18
-
19
- If you only want lines preceding all tags or after all tags, you can use
20
- the "any" option along with `startLines` and/or `endLines`.
21
-
22
- The "always" or "never" options of this rule should not
23
- be used with the linebreak-setting options of the `sort-tags` rule as both
24
- may try to impose a conflicting number of lines.
25
-
26
- <a name="user-content-tag-lines-fixer"></a>
27
- <a name="tag-lines-fixer"></a>
28
- ## Fixer
29
-
30
- (TODO)
31
-
32
- <a name="user-content-tag-lines-options"></a>
33
- <a name="tag-lines-options"></a>
34
- ## Options
35
-
36
- The first option is a single string set to "always", "never", or "any"
37
- (defaults to "never").
38
-
39
- "any" is only useful with `tags` (allowing non-enforcement of lines except
40
- for particular tags) or with `startLines` or `endLines`. It is also
41
- necessary if using the linebreak-setting options of the `sort-tags` rule
42
- so that the two rules won't conflict in both attempting to set lines
43
- between tags.
44
-
45
- The second option is an object with the following optional properties.
46
-
47
- <a name="user-content-tag-lines-options-count-defaults-to-1"></a>
48
- <a name="tag-lines-options-count-defaults-to-1"></a>
49
- ### <code>count</code> (defaults to 1)
50
-
51
- Use with "always" to indicate the number of lines to require be present.
52
-
53
- <a name="user-content-tag-lines-options-applytoendtag-defaults-to-true"></a>
54
- <a name="tag-lines-options-applytoendtag-defaults-to-true"></a>
55
- ### <code>applyToEndTag</code> (defaults to <code>true</code>)
56
-
57
- Set to `false` and use with "always" to indicate the normal lines to be
58
- added after tags should not be added after the final tag.
59
-
60
- <a name="user-content-tag-lines-options-startlines-defaults-to-0"></a>
61
- <a name="tag-lines-options-startlines-defaults-to-0"></a>
62
- ### <code>startLines</code> (defaults to <code>0</code>)
63
-
64
- If not set to `null`, will enforce end lines to the given count before the
65
- first tag only, unless there is only whitespace content, in which case,
66
- a line count will not be enforced.
67
-
68
- <a name="user-content-tag-lines-options-endlines-defaults-to-0"></a>
69
- <a name="tag-lines-options-endlines-defaults-to-0"></a>
70
- ### <code>endLines</code> (defaults to <code>0</code>)
71
-
72
- If not set to `null`, will enforce end lines to the given count on the
73
- final tag only.
74
-
75
- <a name="user-content-tag-lines-options-tags-default-to-empty-object"></a>
76
- <a name="tag-lines-options-tags-default-to-empty-object"></a>
77
- ### <code>tags</code> (default to empty object)
78
-
79
- Overrides the default behavior depending on specific tags.
80
-
81
- An object whose keys are tag names and whose values are objects with the
82
- following keys:
83
-
84
- 1. `lines` - Set to `always`, `never`, or `any` to override.
85
- 2. `count` - Overrides main `count` (for "always")
86
-
87
- <a name="user-content-tag-lines-context-and-settings"></a>
88
- <a name="tag-lines-context-and-settings"></a>
89
- ## Context and settings
90
-
91
- |||
92
- |---|---|
93
- |Context|everywhere|
94
- |Tags|Any|
95
- |Recommended|true|
96
- |Settings|N/A|
97
- |Options|string ("always", "any", "never") followed by object with `applyToEndTag`, `count`, `endLines`, `startLines`, `tags`|
98
-
99
- <a name="user-content-tag-lines-failing-examples"></a>
100
- <a name="tag-lines-failing-examples"></a>
101
- ## Failing examples
102
-
103
- The following patterns are considered problems:
104
-
105
- ````js
106
- /**
107
- * Some description
108
- * @param {string} a
109
- * @param {number} b
110
- */
111
- // "jsdoc/tag-lines": ["error"|"warn", "always"]
112
- // Message: Expected 1 line between tags but found 0
113
-
114
- /**
115
- * Some description
116
- * @param {string} a
117
- * @param {number} b
118
- */
119
- // "jsdoc/tag-lines": ["error"|"warn", "always",{"count":2}]
120
- // Message: Expected 2 lines between tags but found 0
121
-
122
- /**
123
- * Some description
124
- * @param {string} a
125
- *
126
- * @param {number} b
127
- */
128
- // "jsdoc/tag-lines": ["error"|"warn", "always",{"count":2}]
129
- // Message: Expected 2 lines between tags but found 1
130
-
131
- /**
132
- * Some description
133
- * @param {string} a
134
- * @param {number} b
135
- */
136
- // "jsdoc/tag-lines": ["error"|"warn", "always",{"applyToEndTag":false}]
137
- // Message: Expected 1 line between tags but found 0
138
-
139
- /**
140
- * Some description
141
- * @param {string} a
142
- *
143
- * @param {number} b
144
- *
145
- */
146
- // "jsdoc/tag-lines": ["error"|"warn", "never"]
147
- // Message: Expected no lines between tags
148
-
149
- /**
150
- * Some description
151
- * @param {string} a
152
- *
153
- * @param {number} b
154
- *
155
- */
156
- // Message: Expected no lines between tags
157
-
158
- /**
159
- * Some description
160
- * @param {string} a
161
- *
162
- * @param {number} b
163
- * @param {number} c
164
- */
165
- // "jsdoc/tag-lines": ["error"|"warn", "always"]
166
- // Message: Expected 1 line between tags but found 0
167
-
168
- /**
169
- * Some description
170
- * @param {string} a
171
- * @param {number} b
172
- */
173
- // "jsdoc/tag-lines": ["error"|"warn", "never",{"tags":{"param":{"lines":"always"}}}]
174
- // Message: Expected 1 line between tags but found 0
175
-
176
- /**
177
- * Some description
178
- * @param {string} a
179
- * @param {number} b
180
- */
181
- // "jsdoc/tag-lines": ["error"|"warn", "never",{"tags":{"param":{"lines":"always"}}}]
182
- // Message: Expected 1 line between tags but found 0
183
-
184
- /**
185
- * Some description
186
- * @param {string} a
187
- * @param {number} b
188
- *
189
- */
190
- // "jsdoc/tag-lines": ["error"|"warn", "always",{"tags":{"param":{"lines":"never"}}}]
191
- // Message: Expected no lines between tags
192
-
193
- /**
194
- * Some description
195
- * @param {string} a
196
- *
197
- * @param {number} b
198
- */
199
- // "jsdoc/tag-lines": ["error"|"warn", "never",{"count":2,"tags":{"param":{"lines":"always"}}}]
200
- // Message: Expected 2 lines between tags but found 1
201
-
202
- /**
203
- * Some description
204
- * @param {string} a
205
- *
206
- * @param {number} b
207
- */
208
- // "jsdoc/tag-lines": ["error"|"warn", "never",{"count":5,"tags":{"param":{"count":2,"lines":"always"}}}]
209
- // Message: Expected 2 lines between tags but found 1
210
-
211
- /**
212
- * Some description
213
- * @param {string} a
214
- * @param {number} b
215
- */
216
- // "jsdoc/tag-lines": ["error"|"warn", "always",{"tags":{"anotherTag":{"lines":"never"}}}]
217
- // Message: Expected 1 line between tags but found 0
218
-
219
- /**
220
- * Some description
221
- * @param {string} A broken up
222
- *
223
- * tag description.
224
- * @param {number} b
225
- *
226
- */
227
- // "jsdoc/tag-lines": ["error"|"warn", "always",{"endLines":null}]
228
- // Message: Expected 1 line between tags but found 0
229
-
230
- /**
231
- * Some description
232
- * @param {number} b
233
- *
234
- * @returns {string} A broken up
235
- *
236
- * tag description.
237
- */
238
- // "jsdoc/tag-lines": ["error"|"warn", "always"]
239
- // Message: Expected 1 line between tags but found 0
240
-
241
- /**
242
- * Some description
243
- * @param {string} a
244
- * @param {string} b
245
- *
246
- * @returns {SomeType} An extended
247
- * description.
248
- *
249
- * This is still part of `@returns`.
250
- *
251
- */
252
- // "jsdoc/tag-lines": ["error"|"warn", "any",{"endLines":0}]
253
- // Message: Expected 0 trailing lines
254
-
255
- /**
256
- * Some description
257
- * @param {string} a
258
- * @param {string} b
259
- *
260
- * @returns {SomeType} An extended
261
- * description.
262
- *
263
- * This is still part of `@returns`.
264
- *
265
- *
266
- *
267
- */
268
- // "jsdoc/tag-lines": ["error"|"warn", "any",{"endLines":1}]
269
- // Message: Expected 1 trailing lines
270
-
271
- /**
272
- * Some description
273
- * @param {string} a
274
- * @param {string} b
275
- *
276
- * @returns {SomeType} An extended
277
- * description.
278
- *
279
- * This is still part of `@returns`.
280
- *
281
- */
282
- // "jsdoc/tag-lines": ["error"|"warn", "any",{"endLines":2}]
283
- // Message: Expected 2 trailing lines
284
-
285
- /**
286
- * Some description
287
- *
288
- *
289
- * @param {string} a
290
- */
291
- // "jsdoc/tag-lines": ["error"|"warn", "any",{"startLines":1}]
292
- // Message: Expected only 1 line after block description
293
-
294
- /**
295
- * Some description
296
- *
297
- * @param {string} a
298
- */
299
- // "jsdoc/tag-lines": ["error"|"warn", "any",{"startLines":0}]
300
- // Message: Expected only 0 line after block description
301
-
302
- /**
303
- * Some description
304
- *
305
- * @param {string} a
306
- */
307
- // "jsdoc/tag-lines": ["error"|"warn", "any",{"startLines":2}]
308
- // Message: Expected 2 lines after block description
309
-
310
- /**
311
- * Some description
312
- * @param {string} a
313
- */
314
- // "jsdoc/tag-lines": ["error"|"warn", "any",{"startLines":1}]
315
- // Message: Expected 1 lines after block description
316
- ````
317
-
318
-
319
-
320
- <a name="user-content-tag-lines-passing-examples"></a>
321
- <a name="tag-lines-passing-examples"></a>
322
- ## Passing examples
323
-
324
- The following patterns are not considered problems:
325
-
326
- ````js
327
- /**
328
- * Some description
329
- * @param {string} a
330
- * @param {number} b
331
- */
332
-
333
- /**
334
- * Some description
335
- * @param {string} a
336
- * @param {number} b
337
- */
338
- // "jsdoc/tag-lines": ["error"|"warn", "never"]
339
-
340
- /**
341
- * @param {string} a
342
- *
343
- * @param {string} a
344
- */
345
- // "jsdoc/tag-lines": ["error"|"warn", "always",{"applyToEndTag":false}]
346
-
347
- /**
348
- * @param {string} a
349
- */
350
- // "jsdoc/tag-lines": ["error"|"warn", "never",{"applyToEndTag":false}]
351
-
352
- /** @param {number} b */
353
- // "jsdoc/tag-lines": ["error"|"warn", "never",{"applyToEndTag":false}]
354
-
355
- /**
356
- * Some description
357
- * @param {string} a
358
- *
359
- * @param {number} b
360
- *
361
- */
362
- // "jsdoc/tag-lines": ["error"|"warn", "always",{"endLines":null}]
363
-
364
- /**
365
- * Some description
366
- * @param {string} a
367
- *
368
- *
369
- * @param {number} b
370
- *
371
- *
372
- */
373
- // "jsdoc/tag-lines": ["error"|"warn", "always",{"count":2,"endLines":null}]
374
-
375
- /**
376
- * Some description
377
- * @param {string} a
378
- * @param {number} b
379
- */
380
- // "jsdoc/tag-lines": ["error"|"warn", "never",{"tags":{"param":{"lines":"any"}}}]
381
-
382
- /**
383
- * Some description
384
- * @param {string} a
385
- * @param {number} b
386
- */
387
- // "jsdoc/tag-lines": ["error"|"warn", "always",{"tags":{"param":{"lines":"any"}}}]
388
-
389
- /**
390
- * Some description
391
- * @param {string} a
392
- * @param {number} b
393
- */
394
- // "jsdoc/tag-lines": ["error"|"warn", "always",{"tags":{"param":{"lines":"never"}}}]
395
-
396
- /**
397
- * Some description
398
- * @param {number} a
399
- * @param {number} b
400
- */
401
- // "jsdoc/tag-lines": ["error"|"warn", "never",{"tags":{"param":{"lines":"any"}}}]
402
-
403
- /**
404
- * Some description
405
- * @param {number} a
406
- *
407
- * @param {number} b
408
- */
409
- // "jsdoc/tag-lines": ["error"|"warn", "never",{"tags":{"param":{"lines":"any"}}}]
410
-
411
- /**
412
- * Some description
413
- * @param {number} a
414
- * @param {number} b
415
- */
416
- // "jsdoc/tag-lines": ["error"|"warn", "never",{"tags":{"param":{"lines":"never"}}}]
417
-
418
- /**
419
- * Some description
420
- * @param {string} a
421
- *
422
- *
423
- * @param {number} b
424
- *
425
- *
426
- */
427
- // "jsdoc/tag-lines": ["error"|"warn", "never",{"count":5,"tags":{"param":{"count":2,"lines":"always"}}}]
428
-
429
- /**
430
- * Some description
431
- * @param {string} a
432
- * @param {number} b
433
- */
434
- // "jsdoc/tag-lines": ["error"|"warn", "never",{"tags":{"anotherTag":{"lines":"always"}}}]
435
-
436
- /**
437
- * Some description
438
- * @param {string} a
439
- *
440
- * This is still part of `@param`.
441
- * @returns {SomeType} An extended
442
- * description.
443
- */
444
- // "jsdoc/tag-lines": ["error"|"warn", "never"]
445
-
446
- /**
447
- * Some description
448
- * @param {string} a
449
- * @returns {SomeType} An extended
450
- * description.
451
- *
452
- * This is still part of `@returns`.
453
- */
454
- // "jsdoc/tag-lines": ["error"|"warn", "never"]
455
-
456
- /**
457
- * Some description
458
- * @param {string} a
459
- *
460
- * This is still part of `@param`.
461
- *
462
- * @returns {SomeType} An extended
463
- * description.
464
- *
465
- */
466
- // "jsdoc/tag-lines": ["error"|"warn", "always",{"endLines":null}]
467
-
468
- /**
469
- * Some description
470
- * @param {string} a
471
- *
472
- * @returns {SomeType} An extended
473
- * description.
474
- *
475
- * This is still part of `@returns`.
476
- *
477
- */
478
- // "jsdoc/tag-lines": ["error"|"warn", "always",{"endLines":null}]
479
-
480
- /**
481
- * Some description
482
- * @param {string} a
483
- * @param {string} b
484
- *
485
- * @returns {SomeType} An extended
486
- * description.
487
- *
488
- * This is still part of `@returns`.
489
- */
490
- // "jsdoc/tag-lines": ["error"|"warn", "any",{"endLines":0}]
491
-
492
- /**
493
- * Some description
494
- *
495
- * @param {string} a
496
- */
497
- // "jsdoc/tag-lines": ["error"|"warn", "any",{"startLines":1}]
498
-
499
- /**
500
- * Some description
501
- * @param {string} a
502
- *
503
- */
504
- // "jsdoc/tag-lines": ["error"|"warn", "any",{"endLines":1}]
505
-
506
- /**
507
- * Some description
508
- *
509
- *
510
- * @param {string} a
511
- */
512
- // "jsdoc/tag-lines": ["error"|"warn", "never",{"startLines":null}]
513
-
514
- /**
515
- * Some description
516
- * @param {string} a
517
- */
518
- // "jsdoc/tag-lines": ["error"|"warn", "never",{"startLines":null}]
519
-
520
- /**
521
- * @param {string} input
522
- */
523
- function processSass (input) {
524
- }
525
- // "jsdoc/tag-lines": ["error"|"warn", "never",{"startLines":1}]
526
-
527
- /**
528
- *
529
- * @param {string} input
530
- */
531
- function processSass (input) {
532
- }
533
- // "jsdoc/tag-lines": ["error"|"warn", "never",{"startLines":1}]
534
-
535
- /**
536
- * Toggles the deselect all icon button action
537
- */
538
- function updateIconButton () {
539
- }
540
- // "jsdoc/tag-lines": ["error"|"warn", "never",{"startLines":1}]
541
-
542
- /** A class. */
543
- class _Foo {
544
- /** @param arg Argument. */
545
- conststructor(arg: string) {
546
- console.log(arg);
547
- }
548
- }
549
- // "jsdoc/tag-lines": ["error"|"warn", "any",{"startLines":1}]
550
- ````
551
-