File tree 1 file changed +13
-5
lines changed
src/client/pythonEnvironments/creation 1 file changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -6,17 +6,25 @@ import { Progress, Uri } from 'vscode';
6
6
export interface CreateEnvironmentProgress extends Progress < { message ?: string ; increment ?: number } > { }
7
7
8
8
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
+ */
10
12
installPackages ?: boolean ;
11
13
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
+ */
14
18
ignoreSourceControl ?: boolean ;
15
19
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
+ */
17
23
showBackButton ?: boolean ;
18
24
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
+ */
20
28
selectEnvironment ?: boolean ;
21
29
}
22
30
You can’t perform that action at this time.
0 commit comments