Skip to content

Commit bdb7385

Browse files
committed
fixed linter error
1 parent 2bec437 commit bdb7385

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/client/common/utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import * as path from 'path';
88
import * as fs from 'fs';
99
import * as child_process from 'child_process';
1010
import * as settings from './configSettings';
11-
import { CancellationToken, TextDocument, Range, Position } from 'vscode';
11+
import { CancellationToken, TextDocument, Range } from 'vscode';
1212
import { isNotInstalledError } from './helpers';
1313
import { mergeEnvVariables, parseEnvFile } from './envFileParser';
1414

@@ -324,7 +324,7 @@ export function getWindowsLineEndingCount(document: TextDocument, offset: Number
324324

325325
// In order to prevent the one-time loading of large files from taking up too much memory
326326
for (let pos = 0; pos < offset; pos += readBlock) {
327-
let startAt = document.positionAt(pos)
327+
let startAt = document.positionAt(pos);
328328
let endAt = null;
329329

330330
if (offsetDiff >= readBlock) {

0 commit comments

Comments
 (0)