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

Commit 01fc310

Browse files
committed
Update jsdoc rules
1 parent 5bd65d9 commit 01fc310

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
"eslint-plugin-eslint-comments": "~3.2.0",
6969
"eslint-plugin-import": "~2.27.5",
7070
"eslint-plugin-inclusive-language": "~2.2.0",
71-
"eslint-plugin-jsdoc": "~39.7.5",
71+
"eslint-plugin-jsdoc": "~40.0.1",
7272
"eslint-plugin-jsonc": "~2.6.0",
7373
"eslint-plugin-mdx": "~2.0.5",
7474
"eslint-plugin-n": "~15.6.1",

pnpm-lock.yaml

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/rules/jsdoc/check-line-alignment.d.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,20 @@ import type { RuleConfig } from '../rule-config';
66
export interface CheckLineAlignmentConfig {
77
customSpacings?: {
88
postDelimiter?: number;
9+
postHyphen?: number;
910
postName?: number;
1011
postTag?: number;
1112
postType?: number;
1213
};
1314
preserveMainDescriptionPostDelimiter?: boolean;
1415
tags?: string[];
16+
wrapIndent?: string;
1517
}
1618

1719
/**
1820
* Option.
1921
*/
20-
export type CheckLineAlignmentOption = 'always' | 'never';
22+
export type CheckLineAlignmentOption = 'always' | 'never' | 'any';
2123

2224
/**
2325
* Options.

0 commit comments

Comments
 (0)