Skip to content

Commit b91464d

Browse files
committed
chore: fix lint error
1 parent deff25b commit b91464d

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
@@ -4069,7 +4069,7 @@ function getCompletionData(
40694069
const start = timestamp();
40704070
const result = isInStringOrRegularExpressionOrTemplateLiteral(contextToken) ||
40714071
// GH#54729 ignore this case when current position is in a newline
4072-
(isSolelyIdentifierDefinitionLocation(contextToken) && !isInDifferentLineWithContextToken(contextToken, position) ) ||
4072+
(isSolelyIdentifierDefinitionLocation(contextToken) && !isInDifferentLineWithContextToken(contextToken, position)) ||
40734073
isDotOfNumericLiteral(contextToken) ||
40744074
isInJsxText(contextToken) ||
40754075
isBigIntLiteral(contextToken);

0 commit comments

Comments
 (0)