We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2341ac7 commit 6a16f62Copy full SHA for 6a16f62
eslint-plugin/src/index.ts
@@ -16,13 +16,16 @@ interface IPlugin {
16
17
const plugin: IPlugin = {
18
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.
21
"syntax": {
22
meta: {
23
messages: messageIds,
24
type: "problem",
25
docs: {
- description: "Validates tsdoc comments",
- category: "Typescript",
26
+ description: "Validates that TypeScript documentation comments conform to the TSDoc standard",
27
+ category: "Stylistic Issues",
28
+ // This package is experimental
29
recommended: false,
30
url: "https://github.com/microsoft/tsdoc"
31
}
0 commit comments