Skip to content

Commit 71bfefc

Browse files
committed
Switch let -> const from lint validation
1 parent 317f5e2 commit 71bfefc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/compiler/commandLineParser.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -690,7 +690,7 @@ namespace ts {
690690
}
691691

692692
function ConvertJsonOptionToStringArray(optionName: string, optionJson: any, errors: Diagnostic[], func?: (element: string) => string): string[] {
693-
let items: string[] = [];
693+
const items: string[] = [];
694694
let invalidOptionType = false;
695695
if (!isArray(optionJson)) {
696696
invalidOptionType = true;

0 commit comments

Comments
 (0)