Skip to content

Commit e3693c2

Browse files
authored
Fix lint issues with configSettings.ts (#14689)
1 parent cae62fd commit e3693c2

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

src/client/common/configSettings.ts

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -681,7 +681,18 @@ function getPythonExecutable(pythonPath: string): string {
681681
}
682682
// Keep python right on top, for backwards compatibility.
683683
// tslint:disable-next-line:variable-name
684-
const KnownPythonExecutables = ['python', 'python4', 'python3.6', 'python3.5', 'python3', 'python2.7', 'python2', 'python3.7', 'python3.8', 'python3.9'];
684+
const KnownPythonExecutables = [
685+
'python',
686+
'python4',
687+
'python3.6',
688+
'python3.5',
689+
'python3',
690+
'python2.7',
691+
'python2',
692+
'python3.7',
693+
'python3.8',
694+
'python3.9'
695+
];
685696

686697
for (let executableName of KnownPythonExecutables) {
687698
// Suffix with 'python' for linux and 'osx', and 'python.exe' for 'windows'.

0 commit comments

Comments
 (0)