Skip to content

Commit 985467e

Browse files
Fixed linting issues - whitespace in if statements
1 parent db1b609 commit 985467e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/services/completions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1053,7 +1053,7 @@ namespace ts.Completions {
10531053
}
10541054
}
10551055

1056-
if(isMetaProperty(node) && node.keywordToken === SyntaxKind.NewKeyword){
1056+
if (isMetaProperty(node) && node.keywordToken === SyntaxKind.NewKeyword) {
10571057
symbols.push(typeChecker.createSymbol(SymbolFlags.Property, escapeLeadingUnderscores("target")));
10581058
return;
10591059
}

0 commit comments

Comments
 (0)