We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cadba02 commit f576bf5Copy full SHA for f576bf5
vscode-client/src/extension.ts
@@ -19,8 +19,13 @@ export async function activate(context: ExtensionContext) {
19
.getConfiguration('bashIde')
20
.get('highlightParsingErrors', false)
21
22
+ const shellcheckPath = workspace
23
+ .getConfiguration('bashIde')
24
+ .get('shellcheckPath', '')
25
+
26
const env: any = {
27
...process.env,
28
+ SHELLCHECK_PATH: shellcheckPath,
29
EXPLAINSHELL_ENDPOINT: explainshellEndpoint,
30
GLOB_PATTERN: globPattern,
31
HIGHLIGHT_PARSING_ERRORS: highlightParsingErrors,
0 commit comments