summaryrefslogtreecommitdiff
path: root/tools/node_modules/eslint/lib/rules/object-curly-spacing.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/node_modules/eslint/lib/rules/object-curly-spacing.js')
-rw-r--r--tools/node_modules/eslint/lib/rules/object-curly-spacing.js27
1 files changed, 13 insertions, 14 deletions
diff --git a/tools/node_modules/eslint/lib/rules/object-curly-spacing.js b/tools/node_modules/eslint/lib/rules/object-curly-spacing.js
index 48a7dd953b..53ddaaa24a 100644
--- a/tools/node_modules/eslint/lib/rules/object-curly-spacing.js
+++ b/tools/node_modules/eslint/lib/rules/object-curly-spacing.js
@@ -50,7 +50,7 @@ module.exports = {
* 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.
+ * @param {Object} option The option to exclude.
* @returns {boolean} Whether or not the property is excluded.
*/
function isOptionSet(option) {
@@ -69,8 +69,8 @@ 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.
+ * @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) {
@@ -91,8 +91,8 @@ 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.
+ * @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) {
@@ -113,8 +113,8 @@ 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.
+ * @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) {
@@ -133,8 +133,8 @@ 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.
+ * @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) {
@@ -201,8 +201,7 @@ module.exports = {
* Because the last token of object patterns might be a type annotation,
* this traverses tokens preceded by the last property, then returns the
* first '}' token.
- *
- * @param {ASTNode} node - The node to get. This node is an
+ * @param {ASTNode} node The node to get. This node is an
* ObjectExpression or an ObjectPattern. And this node has one or
* more properties.
* @returns {Token} '}' token.
@@ -215,7 +214,7 @@ module.exports = {
/**
* Reports a given object node if spacing in curly braces is invalid.
- * @param {ASTNode} node - An ObjectExpression or ObjectPattern node to check.
+ * @param {ASTNode} node An ObjectExpression or ObjectPattern node to check.
* @returns {void}
*/
function checkForObject(node) {
@@ -233,7 +232,7 @@ module.exports = {
/**
* Reports a given import node if spacing in curly braces is invalid.
- * @param {ASTNode} node - An ImportDeclaration node to check.
+ * @param {ASTNode} node An ImportDeclaration node to check.
* @returns {void}
*/
function checkForImport(node) {
@@ -261,7 +260,7 @@ module.exports = {
/**
* Reports a given export node if spacing in curly braces is invalid.
- * @param {ASTNode} node - An ExportNamedDeclaration node to check.
+ * @param {ASTNode} node An ExportNamedDeclaration node to check.
* @returns {void}
*/
function checkForExport(node) {