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.
94 lines
2.8 KiB
94 lines
2.8 KiB
/**
|
|
* @fileoverview Counts the cyclomatic complexity of each function of the script. See http://en.wikipedia.org/wiki/Cyclomatic_complexity.
|
|
* Counts the number of if, conditional, for, whilte, try, switch/case,
|
|
* @author Patrick Brosset
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Rule Definition
|
|
//------------------------------------------------------------------------------
|
|
|
|
module.exports = function(context) {
|
|
|
|
var THRESHOLD = context.options[0];
|
|
|
|
//--------------------------------------------------------------------------
|
|
// Helpers
|
|
//--------------------------------------------------------------------------
|
|
|
|
// Using a stack to store complexity (handling nested functions)
|
|
var fns = [];
|
|
|
|
// When parsing a new function, store it in our function stack
|
|
function startFunction() {
|
|
fns.push(1);
|
|
}
|
|
|
|
function endFunction(node) {
|
|
var complexity = fns.pop(),
|
|
name = "anonymous";
|
|
|
|
if (node.id) {
|
|
name = node.id.name;
|
|
} else if (node.parent.type === "MethodDefinition") {
|
|
name = node.parent.key.name;
|
|
}
|
|
|
|
if (complexity > THRESHOLD) {
|
|
context.report(node, "Function '{{name}}' has a complexity of {{complexity}}.", { name: name, complexity: complexity });
|
|
}
|
|
}
|
|
|
|
function increaseComplexity() {
|
|
if (fns.length) {
|
|
fns[fns.length - 1] ++;
|
|
}
|
|
}
|
|
|
|
function increaseSwitchComplexity(node) {
|
|
// Avoiding `default`
|
|
if (node.test) {
|
|
increaseComplexity(node);
|
|
}
|
|
}
|
|
|
|
function increaseLogicalComplexity(node) {
|
|
// Avoiding &&
|
|
if (node.operator === "||") {
|
|
increaseComplexity(node);
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------
|
|
// Public API
|
|
//--------------------------------------------------------------------------
|
|
|
|
return {
|
|
"FunctionDeclaration": startFunction,
|
|
"FunctionExpression": startFunction,
|
|
"ArrowFunctionExpression": startFunction,
|
|
"FunctionDeclaration:exit": endFunction,
|
|
"FunctionExpression:exit": endFunction,
|
|
"ArrowFunctionExpression:exit": endFunction,
|
|
|
|
"CatchClause": increaseComplexity,
|
|
"ConditionalExpression": increaseComplexity,
|
|
"LogicalExpression": increaseLogicalComplexity,
|
|
"ForStatement": increaseComplexity,
|
|
"ForInStatement": increaseComplexity,
|
|
"ForOfStatement": increaseComplexity,
|
|
"IfStatement": increaseComplexity,
|
|
"SwitchCase": increaseSwitchComplexity,
|
|
"WhileStatement": increaseComplexity,
|
|
"DoWhileStatement": increaseComplexity
|
|
};
|
|
|
|
};
|
|
|
|
module.exports.schema = [
|
|
{
|
|
"type": "integer"
|
|
}
|
|
];
|
|
|