Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 7942a01

Browse files
Fix linting errors
1 parent 5b39b10 commit 7942a01

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

‎src/features/CodeActions.ts‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,6 @@ export class CodeActionsFeature implements vscode.Disposable {
4747
ruleId = ruleId.substr(2);
4848
}
4949

50-
await vscode.commands.executeCommand("vscode.open", vscode.Uri.parse(pssaDocBaseURL + `${ruleId}`));
50+
await vscode.commands.executeCommand("vscode.open", vscode.Uri.parse(pssaDocBaseURL + ruleId));
5151
}
5252
}

‎src/features/DebugSession.ts‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -650,7 +650,7 @@ export class PickPSHostProcessFeature extends LanguageClientConsumer {
650650
};
651651
const item = await window.showQuickPick(items, options);
652652

653-
return item ? `${item.pid}` : undefined;
653+
return item ? item.pid : undefined;
654654
}
655655

656656
private clearWaitingToken(): void {
@@ -766,7 +766,7 @@ export class PickRunspaceFeature extends LanguageClientConsumer {
766766
};
767767
const item = await window.showQuickPick(items, options);
768768

769-
return item ? `${item.id}` : undefined;
769+
return item ? item.id : undefined;
770770
}
771771

772772
private clearWaitingToken(): void {

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /