summaryrefslogtreecommitdiff
path: root/tools/eslint/lib/rules/no-implicit-coercion.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/eslint/lib/rules/no-implicit-coercion.js')
-rw-r--r--tools/eslint/lib/rules/no-implicit-coercion.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/eslint/lib/rules/no-implicit-coercion.js b/tools/eslint/lib/rules/no-implicit-coercion.js
index cec411af75..24e04858f0 100644
--- a/tools/eslint/lib/rules/no-implicit-coercion.js
+++ b/tools/eslint/lib/rules/no-implicit-coercion.js
@@ -189,12 +189,12 @@ module.exports = {
const sourceCode = context.getSourceCode();
/**
- * Reports an error and autofixes the node
- * @param {ASTNode} node - An ast node to report the error on.
- * @param {string} recommendation - The recommended code for the issue
- * @param {bool} shouldFix - Whether this report should fix the node
- * @returns {void}
- */
+ * Reports an error and autofixes the node
+ * @param {ASTNode} node - An ast node to report the error on.
+ * @param {string} recommendation - The recommended code for the issue
+ * @param {bool} shouldFix - Whether this report should fix the node
+ * @returns {void}
+ */
function report(node, recommendation, shouldFix) {
shouldFix = typeof shouldFix === "undefined" ? true : shouldFix;