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.
40 lines
1.1 KiB
40 lines
1.1 KiB
10 years ago
|
/**
|
||
|
* @fileoverview Rule to flag when a function has too many parameters
|
||
|
* @author Ilya Volodin
|
||
|
* @copyright 2014 Nicholas C. Zakas. All rights reserved.
|
||
|
* @copyright 2013 Ilya Volodin. All rights reserved.
|
||
|
*/
|
||
|
|
||
|
"use strict";
|
||
|
|
||
|
//------------------------------------------------------------------------------
|
||
|
// Rule Definition
|
||
|
//------------------------------------------------------------------------------
|
||
|
|
||
|
module.exports = function(context) {
|
||
|
|
||
|
var numParams = context.options[0] || 3;
|
||
|
|
||
|
/**
|
||
|
* Checks a function to see if it has too many parameters.
|
||
|
* @param {ASTNode} node The node to check.
|
||
|
* @returns {void}
|
||
|
* @private
|
||
|
*/
|
||
|
function checkFunction(node) {
|
||
|
if (node.params.length > numParams) {
|
||
|
context.report(node, "This function has too many parameters ({{count}}). Maximum allowed is {{max}}.", {
|
||
|
count: node.params.length,
|
||
|
max: numParams
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return {
|
||
|
"FunctionDeclaration": checkFunction,
|
||
|
"ArrowFunctionExpression": checkFunction,
|
||
|
"FunctionExpression": checkFunction
|
||
|
};
|
||
|
|
||
|
};
|