Skip to content

Commit 3ffe9db

Browse files
committed
fix semicolon lint
1 parent 2c1982f commit 3ffe9db

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/services/codefixes/addMissingAwait.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ namespace ts.codefix {
6060
});
6161

6262
function getAwaitErrorSpanExpression(sourceFile: SourceFile, errorCode: number, span: TextSpan, cancellationToken: CancellationToken, program: Program) {
63-
const expression = getFixableErrorSpanExpression(sourceFile, span)
63+
const expression = getFixableErrorSpanExpression(sourceFile, span);
6464
return expression
6565
&& isMissingAwaitError(sourceFile, errorCode, span, cancellationToken, program)
6666
&& isInsideAwaitableBody(expression) ? expression : undefined;

src/services/utilities.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3098,7 +3098,7 @@ namespace ts {
30983098
return isExpression(node) && textSpansEqual(span, createTextSpanFromNode(node, sourceFile));
30993099
}) as Expression | undefined;
31003100

3101-
return expression
3101+
return expression;
31023102
}
31033103

31043104
/**

0 commit comments

Comments
 (0)