mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
97 lines
2.5 KiB
97 lines
2.5 KiB
/**
|
|
* @fileoverview Rule to check for jsdoc presence.
|
|
* @author Gyandeep Singh
|
|
* @copyright 2015 Gyandeep Singh. All rights reserved.
|
|
*/
|
|
"use strict";
|
|
|
|
var lodash = require("lodash");
|
|
|
|
module.exports = function(context) {
|
|
var source = context.getSourceCode();
|
|
var DEFAULT_OPTIONS = {
|
|
"FunctionDeclaration": true,
|
|
"MethodDefinition": false,
|
|
"ClassDeclaration": false
|
|
};
|
|
var options = lodash.assign(DEFAULT_OPTIONS, context.options[0] && context.options[0].require || {});
|
|
|
|
/**
|
|
* Report the error message
|
|
* @param {ASTNode} node node to report
|
|
* @returns {void}
|
|
*/
|
|
function report(node) {
|
|
context.report(node, "Missing JSDoc comment.");
|
|
}
|
|
|
|
/**
|
|
* Check if the jsdoc comment is present for class methods
|
|
* @param {ASTNode} node node to examine
|
|
* @returns {void}
|
|
*/
|
|
function checkClassMethodJsDoc(node) {
|
|
if (node.parent.type === "MethodDefinition") {
|
|
var jsdocComment = source.getJSDocComment(node);
|
|
|
|
if (!jsdocComment) {
|
|
report(node);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Check if the jsdoc comment is present or not.
|
|
* @param {ASTNode} node node to examine
|
|
* @returns {void}
|
|
*/
|
|
function checkJsDoc(node) {
|
|
var jsdocComment = source.getJSDocComment(node);
|
|
|
|
if (!jsdocComment) {
|
|
report(node);
|
|
}
|
|
}
|
|
|
|
return {
|
|
"FunctionDeclaration": function(node) {
|
|
if (options.FunctionDeclaration) {
|
|
checkJsDoc(node);
|
|
}
|
|
},
|
|
"FunctionExpression": function(node) {
|
|
if (options.MethodDefinition) {
|
|
checkClassMethodJsDoc(node);
|
|
}
|
|
},
|
|
"ClassDeclaration": function(node) {
|
|
if (options.ClassDeclaration) {
|
|
checkJsDoc(node);
|
|
}
|
|
}
|
|
};
|
|
};
|
|
|
|
module.exports.schema = [
|
|
{
|
|
"type": "object",
|
|
"properties": {
|
|
"require": {
|
|
"type": "object",
|
|
"properties": {
|
|
"ClassDeclaration": {
|
|
"type": "boolean"
|
|
},
|
|
"MethodDefinition": {
|
|
"type": "boolean"
|
|
},
|
|
"FunctionDeclaration": {
|
|
"type": "boolean"
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|
|
];
|
|
|