Skip to content

Commit 5844681

Browse files
authored
Make executable and buildifierExecutable settings machine-overridable (#288)
> `machine-overridable` - Machine specific settings that can be overridden by workspace or folder settings. - https://code.visualstudio.com/api/references/contribution-points Organizations may install these binaries to a known path which can be specified in shared workspace settings. Fixes #236.
1 parent e9d7759 commit 5844681

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,13 +98,13 @@
9898
"type": "string",
9999
"default": "",
100100
"description": "The name of the Bazel executable. This may be an absolute path, or a simple name that will be searched for on the system path. If empty, \"bazel\" on the system path will be used.",
101-
"scope": "machine"
101+
"scope": "machine-overridable"
102102
},
103103
"bazel.buildifierExecutable": {
104104
"type": "string",
105105
"default": "",
106106
"markdownDescription": "The name of the Buildifier executable. This may be an absolute path, or a simple name that will be searched for on the system path. If empty, \"buildifier\" on the system path will be used.\n\nBuildifier can be downloaded from https://github.com/bazelbuild/buildtools/releases.",
107-
"scope": "machine"
107+
"scope": "machine-overridable"
108108
},
109109
"bazel.buildifierFixOnFormat": {
110110
"type": "boolean",

0 commit comments

Comments
 (0)