Skip to content
This repository was archived by the owner on Mar 7, 2025. It is now read-only.

Commit 3ba77e5

Browse files
committed
No changes in jsdoc rules
1 parent 0b83ba6 commit 3ba77e5

7 files changed

+8
-12
lines changed

src/rules/jsdoc/match-description.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ export interface MatchDescriptionOption {
2121
matchDescription?: string;
2222
message?: string;
2323
tags?: {
24+
/**
25+
*/
2426
[k: string]:
2527
| string
2628
| true

src/rules/jsdoc/no-multi-asterisks.d.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,17 @@ export interface NoMultiAsterisksOption {
1616
export type NoMultiAsterisksOptions = [NoMultiAsterisksOption?];
1717

1818
/**
19-
*
2019
*
2120
* @see [no-multi-asterisks](https://github.com/gajus/eslint-plugin-jsdoc#eslint-plugin-jsdoc-rules-no-multi-asterisks)
2221
*/
2322
export type NoMultiAsterisksRuleConfig = RuleConfig<NoMultiAsterisksOptions>;
2423

2524
/**
26-
*
2725
*
2826
* @see [no-multi-asterisks](https://github.com/gajus/eslint-plugin-jsdoc#eslint-plugin-jsdoc-rules-no-multi-asterisks)
2927
*/
3028
export interface NoMultiAsterisksRule {
3129
/**
32-
*
3330
*
3431
* @see [no-multi-asterisks](https://github.com/gajus/eslint-plugin-jsdoc#eslint-plugin-jsdoc-rules-no-multi-asterisks)
3532
*/

src/rules/jsdoc/require-asterisk-prefix.d.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,22 +26,16 @@ export type RequireAsteriskPrefixOptions = [
2626
];
2727

2828
/**
29-
*
30-
*
3129
*
3230
*/
3331
export type RequireAsteriskPrefixRuleConfig =
3432
RuleConfig<RequireAsteriskPrefixOptions>;
3533

3634
/**
37-
*
38-
*
3935
*
4036
*/
4137
export interface RequireAsteriskPrefixRule {
4238
/**
43-
*
44-
*
4539
*
4640
*/
4741
'jsdoc/require-asterisk-prefix': RequireAsteriskPrefixRuleConfig;

src/rules/jsdoc/require-file-overview.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ import type { RuleConfig } from '../rule-config';
55
*/
66
export interface RequireFileOverviewOption {
77
tags?: {
8+
/**
9+
*/
810
[k: string]: {
911
initialCommentsOnly?: boolean;
1012
mustExist?: boolean;

src/rules/jsdoc/require-hyphen-before-param-description.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ import type { RuleConfig } from '../rule-config';
66
export interface RequireHyphenBeforeParamDescriptionConfig {
77
tags?:
88
| {
9+
/**
10+
*/
911
[k: string]: 'always' | 'never';
1012
}
1113
| 'any';

src/rules/jsdoc/sort-tags.d.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,17 @@ export interface SortTagsOption {
1515
export type SortTagsOptions = [SortTagsOption?];
1616

1717
/**
18-
*
1918
*
2019
* @see [sort-tags](https://github.com/gajus/eslint-plugin-jsdoc#eslint-plugin-jsdoc-rules-sort-tags)
2120
*/
2221
export type SortTagsRuleConfig = RuleConfig<SortTagsOptions>;
2322

2423
/**
25-
*
2624
*
2725
* @see [sort-tags](https://github.com/gajus/eslint-plugin-jsdoc#eslint-plugin-jsdoc-rules-sort-tags)
2826
*/
2927
export interface SortTagsRule {
3028
/**
31-
*
3229
*
3330
* @see [sort-tags](https://github.com/gajus/eslint-plugin-jsdoc#eslint-plugin-jsdoc-rules-sort-tags)
3431
*/

src/rules/jsdoc/tag-lines.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ export interface TagLinesConfig {
88
dropEndLines?: boolean;
99
noEndLines?: boolean;
1010
tags?: {
11+
/**
12+
*/
1113
[k: string]: {
1214
count?: number;
1315
lines?: 'always' | 'never' | 'any';

0 commit comments

Comments
 (0)