|
|
|
|
|
|
|
|
|
|
|
|
|
"use strict"; |
|
|
|
|
|
|
|
|
|
|
|
const astUtils = require("./utils/ast-utils"); |
|
const { upperCaseFirst } = require("../shared/string-utils"); |
|
|
|
|
|
|
|
|
|
|
|
|
|
module.exports = { |
|
meta: { |
|
type: "suggestion", |
|
|
|
docs: { |
|
description: "Enforce a maximum cyclomatic complexity allowed in a program", |
|
recommended: false, |
|
url: "https://eslint.org/docs/latest/rules/complexity" |
|
}, |
|
|
|
schema: [ |
|
{ |
|
oneOf: [ |
|
{ |
|
type: "integer", |
|
minimum: 0 |
|
}, |
|
{ |
|
type: "object", |
|
properties: { |
|
maximum: { |
|
type: "integer", |
|
minimum: 0 |
|
}, |
|
max: { |
|
type: "integer", |
|
minimum: 0 |
|
} |
|
}, |
|
additionalProperties: false |
|
} |
|
] |
|
} |
|
], |
|
|
|
messages: { |
|
complex: "{{name}} has a complexity of {{complexity}}. Maximum allowed is {{max}}." |
|
} |
|
}, |
|
|
|
create(context) { |
|
const option = context.options[0]; |
|
let THRESHOLD = 20; |
|
|
|
if ( |
|
typeof option === "object" && |
|
(Object.prototype.hasOwnProperty.call(option, "maximum") || Object.prototype.hasOwnProperty.call(option, "max")) |
|
) { |
|
THRESHOLD = option.maximum || option.max; |
|
} else if (typeof option === "number") { |
|
THRESHOLD = option; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
const complexities = []; |
|
|
|
|
|
|
|
|
|
|
|
|
|
function increaseComplexity() { |
|
complexities[complexities.length - 1]++; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
return { |
|
|
|
onCodePathStart() { |
|
|
|
|
|
complexities.push(1); |
|
}, |
|
|
|
|
|
CatchClause: increaseComplexity, |
|
ConditionalExpression: increaseComplexity, |
|
LogicalExpression: increaseComplexity, |
|
ForStatement: increaseComplexity, |
|
ForInStatement: increaseComplexity, |
|
ForOfStatement: increaseComplexity, |
|
IfStatement: increaseComplexity, |
|
WhileStatement: increaseComplexity, |
|
DoWhileStatement: increaseComplexity, |
|
|
|
|
|
"SwitchCase[test]": increaseComplexity, |
|
|
|
|
|
AssignmentExpression(node) { |
|
if (astUtils.isLogicalAssignmentOperator(node.operator)) { |
|
increaseComplexity(); |
|
} |
|
}, |
|
|
|
onCodePathEnd(codePath, node) { |
|
const complexity = complexities.pop(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ( |
|
codePath.origin !== "function" && |
|
codePath.origin !== "class-field-initializer" && |
|
codePath.origin !== "class-static-block" |
|
) { |
|
return; |
|
} |
|
|
|
if (complexity > THRESHOLD) { |
|
let name; |
|
|
|
if (codePath.origin === "class-field-initializer") { |
|
name = "class field initializer"; |
|
} else if (codePath.origin === "class-static-block") { |
|
name = "class static block"; |
|
} else { |
|
name = astUtils.getFunctionNameWithKind(node); |
|
} |
|
|
|
context.report({ |
|
node, |
|
messageId: "complex", |
|
data: { |
|
name: upperCaseFirst(name), |
|
complexity, |
|
max: THRESHOLD |
|
} |
|
}); |
|
} |
|
} |
|
}; |
|
|
|
} |
|
}; |
|
|