Skip to content

Commit 879c601

Browse files
committed
Fix comments
1 parent 351b89b commit 879c601

File tree

1 file changed

+13
-5
lines changed
  • src/client/pythonEnvironments/creation

1 file changed

+13
-5
lines changed

src/client/pythonEnvironments/creation/types.ts

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,25 @@ import { Progress, Uri } from 'vscode';
66
export interface CreateEnvironmentProgress extends Progress<{ message?: string; increment?: number }> {}
77

88
export interface CreateEnvironmentOptions {
9-
// Default `true`. If `true`, the environment creation handler is expected to install packages.
9+
/**
10+
* Default `true`. If `true`, the environment creation handler is expected to install packages.
11+
*/
1012
installPackages?: boolean;
1113

12-
// Default `true`. If `true`, the environment creation provider is expected to add the environment to ignore list
13-
// for the source control.
14+
/**
15+
* Default `true`. If `true`, the environment creation provider is expected to add the environment to ignore list
16+
* for the source control.
17+
*/
1418
ignoreSourceControl?: boolean;
1519

16-
// Default `false`. If `true` the creation provider should show back button when showing QuickPick or QuickInput.
20+
/**
21+
* Default `false`. If `true` the creation provider should show back button when showing QuickPick or QuickInput.
22+
*/
1723
showBackButton?: boolean;
1824

19-
// Default `true`. If `true`, the environment will be selected as the environment to be used for the workspace.
25+
/**
26+
* Default `true`. If `true`, the environment will be selected as the environment to be used for the workspace.
27+
*/
2028
selectEnvironment?: boolean;
2129
}
2230

0 commit comments

Comments
 (0)