-
-
Notifications
You must be signed in to change notification settings - Fork 169
Closed
Labels
Description
Motivation
Report every missing piece of jsdoc comment(s).
Current behavior
Missing class and method comments are not reported as missing.
Desired behavior
Show warning for all missing jsdoc comments.
Alternatives considered
If I use the following (deprecated) eslint rule set I get warnings for missing class and method declarations:
"require-jsdoc": ["warn", {
"require": {
"FunctionDeclaration": true,
"MethodDefinition": true,
"ClassDeclaration": true,
"ArrowFunctionExpression": true,
"FunctionExpression": true
}
}],