Skip to content

Commit 01b5803

Browse files
author
Armando Aguirre
committed
Fixed lint issues
1 parent aa99aa4 commit 01b5803

File tree

7 files changed

+1875
-1868
lines changed

7 files changed

+1875
-1868
lines changed

src/harness/client.ts

Lines changed: 835 additions & 835 deletions
Large diffs are not rendered by default.

src/harness/fourslashImpl.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3631,8 +3631,8 @@ namespace FourSlash {
36313631
}
36323632

36333633
public toggleLineComment(newFileContent: string): void {
3634-
let changes: ts.TextChange[] = [];
3635-
for (let range of this.getRanges()) {
3634+
const changes: ts.TextChange[] = [];
3635+
for (const range of this.getRanges()) {
36363636
changes.push.apply(changes, this.languageService.toggleLineComment(this.activeFile.fileName, range));
36373637
}
36383638

@@ -3642,8 +3642,8 @@ namespace FourSlash {
36423642
}
36433643

36443644
public toggleMultilineComment(newFileContent: string): void {
3645-
let changes: ts.TextChange[] = [];
3646-
for (let range of this.getRanges()) {
3645+
const changes: ts.TextChange[] = [];
3646+
for (const range of this.getRanges()) {
36473647
changes.push.apply(changes, this.languageService.toggleMultilineComment(this.activeFile.fileName, range));
36483648
}
36493649

@@ -3653,8 +3653,8 @@ namespace FourSlash {
36533653
}
36543654

36553655
public commentSelection(newFileContent: string): void {
3656-
let changes: ts.TextChange[] = [];
3657-
for (let range of this.getRanges()) {
3656+
const changes: ts.TextChange[] = [];
3657+
for (const range of this.getRanges()) {
36583658
changes.push.apply(changes, this.languageService.commentSelection(this.activeFile.fileName, range));
36593659
}
36603660

@@ -3664,8 +3664,8 @@ namespace FourSlash {
36643664
}
36653665

36663666
public uncommentSelection(newFileContent: string): void {
3667-
let changes: ts.TextChange[] = [];
3668-
for (let range of this.getRanges()) {
3667+
const changes: ts.TextChange[] = [];
3668+
for (const range of this.getRanges()) {
36693669
changes.push.apply(changes, this.languageService.uncommentSelection(this.activeFile.fileName, range));
36703670
}
36713671

0 commit comments

Comments
 (0)