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.
142 lines
4.9 KiB
142 lines
4.9 KiB
/**
|
|
* @fileoverview Rule to validate spacing before function paren.
|
|
* @author Mathias Schreck <https://github.com/lo1tuma>
|
|
*/
|
|
"use strict";
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Rule Definition
|
|
//------------------------------------------------------------------------------
|
|
|
|
module.exports = {
|
|
meta: {
|
|
docs: {
|
|
description: "enforce consistent spacing before `function` definition opening parenthesis",
|
|
category: "Stylistic Issues",
|
|
recommended: false
|
|
},
|
|
|
|
fixable: "whitespace",
|
|
|
|
schema: [
|
|
{
|
|
oneOf: [
|
|
{
|
|
enum: ["always", "never"]
|
|
},
|
|
{
|
|
type: "object",
|
|
properties: {
|
|
anonymous: {
|
|
enum: ["always", "never", "ignore"]
|
|
},
|
|
named: {
|
|
enum: ["always", "never", "ignore"]
|
|
}
|
|
},
|
|
additionalProperties: false
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
|
|
create: function(context) {
|
|
|
|
var configuration = context.options[0],
|
|
sourceCode = context.getSourceCode(),
|
|
requireAnonymousFunctionSpacing = true,
|
|
forbidAnonymousFunctionSpacing = false,
|
|
requireNamedFunctionSpacing = true,
|
|
forbidNamedFunctionSpacing = false;
|
|
|
|
if (typeof configuration === "object") {
|
|
requireAnonymousFunctionSpacing = (
|
|
!configuration.anonymous || configuration.anonymous === "always");
|
|
forbidAnonymousFunctionSpacing = configuration.anonymous === "never";
|
|
requireNamedFunctionSpacing = (
|
|
!configuration.named || configuration.named === "always");
|
|
forbidNamedFunctionSpacing = configuration.named === "never";
|
|
} else if (configuration === "never") {
|
|
requireAnonymousFunctionSpacing = false;
|
|
forbidAnonymousFunctionSpacing = true;
|
|
requireNamedFunctionSpacing = false;
|
|
forbidNamedFunctionSpacing = true;
|
|
}
|
|
|
|
/**
|
|
* Determines whether a function has a name.
|
|
* @param {ASTNode} node The function node.
|
|
* @returns {boolean} Whether the function has a name.
|
|
*/
|
|
function isNamedFunction(node) {
|
|
var parent;
|
|
|
|
if (node.id) {
|
|
return true;
|
|
}
|
|
|
|
parent = node.parent;
|
|
return parent.type === "MethodDefinition" ||
|
|
(parent.type === "Property" &&
|
|
(
|
|
parent.kind === "get" ||
|
|
parent.kind === "set" ||
|
|
parent.method
|
|
)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Validates the spacing before function parentheses.
|
|
* @param {ASTNode} node The node to be validated.
|
|
* @returns {void}
|
|
*/
|
|
function validateSpacingBeforeParentheses(node) {
|
|
var isNamed = isNamedFunction(node),
|
|
leftToken,
|
|
rightToken,
|
|
location;
|
|
|
|
if (node.generator && !isNamed) {
|
|
return;
|
|
}
|
|
|
|
rightToken = sourceCode.getFirstToken(node);
|
|
while (rightToken.value !== "(") {
|
|
rightToken = sourceCode.getTokenAfter(rightToken);
|
|
}
|
|
leftToken = context.getTokenBefore(rightToken);
|
|
location = leftToken.loc.end;
|
|
|
|
if (sourceCode.isSpaceBetweenTokens(leftToken, rightToken)) {
|
|
if ((isNamed && forbidNamedFunctionSpacing) || (!isNamed && forbidAnonymousFunctionSpacing)) {
|
|
context.report({
|
|
node: node,
|
|
loc: location,
|
|
message: "Unexpected space before function parentheses.",
|
|
fix: function(fixer) {
|
|
return fixer.removeRange([leftToken.range[1], rightToken.range[0]]);
|
|
}
|
|
});
|
|
}
|
|
} else {
|
|
if ((isNamed && requireNamedFunctionSpacing) || (!isNamed && requireAnonymousFunctionSpacing)) {
|
|
context.report({
|
|
node: node,
|
|
loc: location,
|
|
message: "Missing space before function parentheses.",
|
|
fix: function(fixer) {
|
|
return fixer.insertTextAfter(leftToken, " ");
|
|
}
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
return {
|
|
FunctionDeclaration: validateSpacingBeforeParentheses,
|
|
FunctionExpression: validateSpacingBeforeParentheses
|
|
};
|
|
}
|
|
};
|
|
|