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.
215 lines
8.1 KiB
215 lines
8.1 KiB
/**
|
|
* @fileoverview Disallows or enforces spaces inside of array brackets.
|
|
* @author Jamund Ferguson
|
|
*/
|
|
"use strict";
|
|
|
|
var astUtils = require("../ast-utils");
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Rule Definition
|
|
//------------------------------------------------------------------------------
|
|
|
|
module.exports = {
|
|
meta: {
|
|
docs: {
|
|
description: "Enforce spacing inside array brackets",
|
|
category: "Stylistic Issues",
|
|
recommended: false
|
|
},
|
|
fixable: "whitespace",
|
|
schema: [
|
|
{
|
|
enum: ["always", "never"]
|
|
},
|
|
{
|
|
type: "object",
|
|
properties: {
|
|
singleValue: {
|
|
type: "boolean"
|
|
},
|
|
objectsInArrays: {
|
|
type: "boolean"
|
|
},
|
|
arraysInArrays: {
|
|
type: "boolean"
|
|
}
|
|
},
|
|
additionalProperties: false
|
|
}
|
|
]
|
|
},
|
|
create: function(context) {
|
|
var spaced = context.options[0] === "always",
|
|
sourceCode = context.getSourceCode();
|
|
|
|
/**
|
|
* Determines whether an option is set, relative to the spacing option.
|
|
* If spaced is "always", then check whether option is set to false.
|
|
* If spaced is "never", then check whether option is set to true.
|
|
* @param {Object} option - The option to exclude.
|
|
* @returns {boolean} Whether or not the property is excluded.
|
|
*/
|
|
function isOptionSet(option) {
|
|
return context.options[1] ? context.options[1][option] === !spaced : false;
|
|
}
|
|
|
|
var options = {
|
|
spaced: spaced,
|
|
singleElementException: isOptionSet("singleValue"),
|
|
objectsInArraysException: isOptionSet("objectsInArrays"),
|
|
arraysInArraysException: isOptionSet("arraysInArrays")
|
|
};
|
|
|
|
//--------------------------------------------------------------------------
|
|
// Helpers
|
|
//--------------------------------------------------------------------------
|
|
|
|
/**
|
|
* Reports that there shouldn't be a space after the first token
|
|
* @param {ASTNode} node - The node to report in the event of an error.
|
|
* @param {Token} token - The token to use for the report.
|
|
* @returns {void}
|
|
*/
|
|
function reportNoBeginningSpace(node, token) {
|
|
context.report({
|
|
node: node,
|
|
loc: token.loc.start,
|
|
message: "There should be no space after '" + token.value + "'",
|
|
fix: function(fixer) {
|
|
var nextToken = context.getSourceCode().getTokenAfter(token);
|
|
|
|
return fixer.removeRange([token.range[1], nextToken.range[0]]);
|
|
}
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reports that there shouldn't be a space before the last token
|
|
* @param {ASTNode} node - The node to report in the event of an error.
|
|
* @param {Token} token - The token to use for the report.
|
|
* @returns {void}
|
|
*/
|
|
function reportNoEndingSpace(node, token) {
|
|
context.report({
|
|
node: node,
|
|
loc: token.loc.start,
|
|
message: "There should be no space before '" + token.value + "'",
|
|
fix: function(fixer) {
|
|
var previousToken = context.getSourceCode().getTokenBefore(token);
|
|
|
|
return fixer.removeRange([previousToken.range[1], token.range[0]]);
|
|
}
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reports that there should be a space after the first token
|
|
* @param {ASTNode} node - The node to report in the event of an error.
|
|
* @param {Token} token - The token to use for the report.
|
|
* @returns {void}
|
|
*/
|
|
function reportRequiredBeginningSpace(node, token) {
|
|
context.report({
|
|
node: node,
|
|
loc: token.loc.start,
|
|
message: "A space is required after '" + token.value + "'",
|
|
fix: function(fixer) {
|
|
return fixer.insertTextAfter(token, " ");
|
|
}
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reports that there should be a space before the last token
|
|
* @param {ASTNode} node - The node to report in the event of an error.
|
|
* @param {Token} token - The token to use for the report.
|
|
* @returns {void}
|
|
*/
|
|
function reportRequiredEndingSpace(node, token) {
|
|
context.report({
|
|
node: node,
|
|
loc: token.loc.start,
|
|
message: "A space is required before '" + token.value + "'",
|
|
fix: function(fixer) {
|
|
return fixer.insertTextBefore(token, " ");
|
|
}
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Determines if a node is an object type
|
|
* @param {ASTNode} node - The node to check.
|
|
* @returns {boolean} Whether or not the node is an object type.
|
|
*/
|
|
function isObjectType(node) {
|
|
return node && (node.type === "ObjectExpression" || node.type === "ObjectPattern");
|
|
}
|
|
|
|
/**
|
|
* Determines if a node is an array type
|
|
* @param {ASTNode} node - The node to check.
|
|
* @returns {boolean} Whether or not the node is an array type.
|
|
*/
|
|
function isArrayType(node) {
|
|
return node && (node.type === "ArrayExpression" || node.type === "ArrayPattern");
|
|
}
|
|
|
|
/**
|
|
* Validates the spacing around array brackets
|
|
* @param {ASTNode} node - The node we're checking for spacing
|
|
* @returns {void}
|
|
*/
|
|
function validateArraySpacing(node) {
|
|
if (options.spaced && node.elements.length === 0) {
|
|
return;
|
|
}
|
|
|
|
var first = context.getFirstToken(node),
|
|
second = context.getFirstToken(node, 1),
|
|
penultimate = context.getLastToken(node, 1),
|
|
last = context.getLastToken(node),
|
|
firstElement = node.elements[0],
|
|
lastElement = node.elements[node.elements.length - 1];
|
|
|
|
var openingBracketMustBeSpaced =
|
|
options.objectsInArraysException && isObjectType(firstElement) ||
|
|
options.arraysInArraysException && isArrayType(firstElement) ||
|
|
options.singleElementException && node.elements.length === 1
|
|
? !options.spaced : options.spaced;
|
|
|
|
var closingBracketMustBeSpaced =
|
|
options.objectsInArraysException && isObjectType(lastElement) ||
|
|
options.arraysInArraysException && isArrayType(lastElement) ||
|
|
options.singleElementException && node.elements.length === 1
|
|
? !options.spaced : options.spaced;
|
|
|
|
if (astUtils.isTokenOnSameLine(first, second)) {
|
|
if (openingBracketMustBeSpaced && !sourceCode.isSpaceBetweenTokens(first, second)) {
|
|
reportRequiredBeginningSpace(node, first);
|
|
}
|
|
if (!openingBracketMustBeSpaced && sourceCode.isSpaceBetweenTokens(first, second)) {
|
|
reportNoBeginningSpace(node, first);
|
|
}
|
|
}
|
|
|
|
if (first !== penultimate && astUtils.isTokenOnSameLine(penultimate, last)) {
|
|
if (closingBracketMustBeSpaced && !sourceCode.isSpaceBetweenTokens(penultimate, last)) {
|
|
reportRequiredEndingSpace(node, last);
|
|
}
|
|
if (!closingBracketMustBeSpaced && sourceCode.isSpaceBetweenTokens(penultimate, last)) {
|
|
reportNoEndingSpace(node, last);
|
|
}
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------
|
|
// Public
|
|
//--------------------------------------------------------------------------
|
|
|
|
return {
|
|
ArrayPattern: validateArraySpacing,
|
|
ArrayExpression: validateArraySpacing
|
|
};
|
|
}
|
|
};
|
|
|