Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
tools: remove comment in eslint rule
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.
  • Loading branch information
danbev committed Jun 27, 2017
commit 5595d1a5f1e6fa99bfe7185613157744f48a4892
1 change: 0 additions & 1 deletion tools/eslint-rules/align-multiline-assignment.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
});
Expand Down