From 70901b271c3da5301b47679d806dc506cee69724 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Tue, 27 Jun 2017 14:31:17 +0200 Subject: [PATCH] tools: remove comment in eslint rule MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I noticed this comment while working on a different task and could not find any reason for it being there. Just bringing this up in case it was overlooked. PR-URL: https://github.com/nodejs/node/pull/13945 Reviewed-By: Colin Ihrig Reviewed-By: Michaƫl Zasso Reviewed-By: Rich Trott Reviewed-By: Benjamin Gruenbaum Reviewed-By: Refael Ackermann Reviewed-By: Luigi Pinca Reviewed-By: Michael Dawson Reviewed-By: James M Snell --- tools/eslint-rules/align-multiline-assignment.js | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/eslint-rules/align-multiline-assignment.js b/tools/eslint-rules/align-multiline-assignment.js index 80896b5e96296d..8e2f5ed1ee7e90 100644 --- a/tools/eslint-rules/align-multiline-assignment.js +++ b/tools/eslint-rules/align-multiline-assignment.js @@ -54,7 +54,6 @@ function testAssignment(context, node) { function testDeclaration(context, node) { node.declarations.forEach((declaration) => { const msg = checkExpressionAlignment(declaration.init); - // const start = declaration.init.loc.start; if (msg) context.report(node, msg); });