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

Commit e56acce

Browse files
committed
Update eslint rules
1 parent 8405741 commit e56acce

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

src/rules/eslint/multiline-comment-style.d.ts

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,21 @@ import type { RuleConfig } from '../rule-config';
44
* Option.
55
*/
66
export type MultilineCommentStyleOption =
7-
| 'starred-block'
8-
| 'separate-lines'
9-
| 'bare-block';
7+
| []
8+
| ['starred-block' | 'bare-block']
9+
| []
10+
| ['separate-lines']
11+
| [
12+
'separate-lines',
13+
{
14+
checkJSDoc?: boolean;
15+
},
16+
];
1017

1118
/**
1219
* Options.
1320
*/
14-
export type MultilineCommentStyleOptions = [MultilineCommentStyleOption?];
21+
export type MultilineCommentStyleOptions = MultilineCommentStyleOption;
1522

1623
/**
1724
* Enforce a particular style for multiline comments.

0 commit comments

Comments
 (0)