summaryrefslogtreecommitdiff
path: root/tools/eslint/lib/rules/array-bracket-spacing.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/eslint/lib/rules/array-bracket-spacing.js')
-rw-r--r--tools/eslint/lib/rules/array-bracket-spacing.js56
1 files changed, 28 insertions, 28 deletions
diff --git a/tools/eslint/lib/rules/array-bracket-spacing.js b/tools/eslint/lib/rules/array-bracket-spacing.js
index 73cfbdc3c1..aecef2c4f2 100644
--- a/tools/eslint/lib/rules/array-bracket-spacing.js
+++ b/tools/eslint/lib/rules/array-bracket-spacing.js
@@ -66,11 +66,11 @@ module.exports = {
//--------------------------------------------------------------------------
/**
- * 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}
- */
+ * 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,
@@ -88,11 +88,11 @@ module.exports = {
}
/**
- * 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}
- */
+ * 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,
@@ -110,11 +110,11 @@ module.exports = {
}
/**
- * 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}
- */
+ * 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,
@@ -130,11 +130,11 @@ module.exports = {
}
/**
- * 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}
- */
+ * 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,
@@ -150,19 +150,19 @@ module.exports = {
}
/**
- * 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.
- */
+ * 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.
- */
+ * 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");
}