Skip to content

Commit 2945070

Browse files
committed
Re-run linter
1 parent 48648f9 commit 2945070

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

server/src/linter.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,4 +197,3 @@ const severityMapping: Record<string, undefined | LSP.DiagnosticSeverity> = {
197197
// Severity mappings:
198198
// https://github.com/koalaman/shellcheck/blob/364c33395e2f2d5500307f01989f70241c247d5a/src/ShellCheck/Formatter/Format.hs#L50
199199
const mapSeverity = (sev: string) => severityMapping[sev] || LSP.DiagnosticSeverity.Error
200-

vscode-client/src/extension.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,7 @@ export async function activate(context: ExtensionContext) {
1919
.getConfiguration('bashIde')
2020
.get('highlightParsingErrors', false)
2121

22-
const shellcheckPath = workspace
23-
.getConfiguration('bashIde')
24-
.get('shellcheckPath', '')
22+
const shellcheckPath = workspace.getConfiguration('bashIde').get('shellcheckPath', '')
2523

2624
const env: any = {
2725
...process.env,

0 commit comments

Comments
 (0)