We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
--disable-workspace-trust
1 parent ba68656 commit d8a5d5bCopy full SHA for d8a5d5b
src/node/cli.ts
@@ -50,6 +50,7 @@ export interface UserProvidedCodeArgs {
50
"github-auth"?: string
51
"disable-update-check"?: boolean
52
"disable-file-downloads"?: boolean
53
+ "disable-workspace-trust"?: boolean
54
}
55
56
/**
@@ -163,6 +164,11 @@ export const options: Options<Required<UserProvidedArgs>> = {
163
164
description:
165
"Disable file downloads from Code. This can also be set with CS_DISABLE_FILE_DOWNLOADS set to 'true' or '1'.",
166
},
167
+ "disable-workspace-trust": {
168
+ type: "boolean",
169
+ description:
170
+ "Disable Workspace Trust feature. This switch only affects the current session."
171
+ },
172
// --enable can be used to enable experimental features. These features
173
// provide no guarantees.
174
enable: { type: "string[]" },
0 commit comments