Skip to content

Commit 6a16f62

Browse files
committed
Misc PR feedback
1 parent 2341ac7 commit 6a16f62

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

eslint-plugin/src/index.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,16 @@ interface IPlugin {
1616

1717
const plugin: IPlugin = {
1818
rules: {
19+
// NOTE: The actual ESLint rule name will be "tsdoc/syntax". It is calculated by deleting "eslint-plugin-"
20+
// from the NPM package name, and then appending this string.
1921
"syntax": {
2022
meta: {
2123
messages: messageIds,
2224
type: "problem",
2325
docs: {
24-
description: "Validates tsdoc comments",
25-
category: "Typescript",
26+
description: "Validates that TypeScript documentation comments conform to the TSDoc standard",
27+
category: "Stylistic Issues",
28+
// This package is experimental
2629
recommended: false,
2730
url: "https://github.com/microsoft/tsdoc"
2831
}

0 commit comments

Comments
 (0)