Skip to content

Commit 196db5b

Browse files
committed
Fixed lint error
1 parent f273448 commit 196db5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/services/codefixes/addMissingConst.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ namespace ts.codefix {
9999
if (!isBinaryExpression(expression)) {
100100
return false;
101101
}
102-
102+
103103
if (expression.operatorToken.kind === SyntaxKind.CommaToken) {
104104
return every([expression.left, expression.right], expression => expressionCouldBeVariableDeclaration(expression, checker));
105105
}

0 commit comments

Comments
 (0)