Skip to content

Commit 1fdd5e6

Browse files
authored
Merge pull request rust-lang#318 from LDSpits/feature/rls-channel-settings
Add default channel setting & constrain channel values
2 parents 452db73 + 7f0c23d commit 1fdd5e6

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

package.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,10 +176,15 @@
176176
"rust-client.channel": {
177177
"type": [
178178
"string",
179-
"null"
179+
null
180+
],
181+
"enum": [
182+
"stable",
183+
"beta",
184+
"nightly"
180185
],
181186
"default": null,
182-
"description": "Rust channel to install RLS from."
187+
"description": "Rust channel to install RLS from. By default it will use the same channel as your currently open project"
183188
},
184189
"rust-client.rls-name": {
185190
"type": "string",

0 commit comments

Comments
 (0)