You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`Environment variable configuration is being deprecated, please use workspace configuration. The following environment variables were used: ${environmentVariablesUsed.join(
143
-
', ',
144
-
)}`,
145
-
)
146
-
}
139
+
if(environmentVariablesUsed.length>0){
140
+
this.updateConfiguration(environmentConfig)
141
+
connection.console.warn(
142
+
`Environment variable configuration is being deprecated, please use workspace configuration. The following environment variables were used: ${environmentVariablesUsed.join(
143
+
', ',
144
+
)}`,
145
+
)
147
146
}
148
147
149
148
if(hasConfigurationCapability){
@@ -208,6 +207,10 @@ export default class BashServer {
208
207
if(!isDeepStrictEqual(this.config,newConfig)){
209
208
this.config=newConfig
210
209
210
+
// NOTE: I don't really like this... An alternative would be to pass in the
211
+
// shellcheck executable path when linting. We would need to handle
0 commit comments