Skip to content

Commit 58349e7

Browse files
dependabot[bot]TylerLeonhardt
authored andcommitted
[Ignore] Bump tslint from 5.14.0 to 5.15.0 (#1887)
* Bump tslint from 5.14.0 to 5.15.0 Bumps [tslint](https://github.com/palantir/tslint) from 5.14.0 to 5.15.0. - [Release notes](https://github.com/palantir/tslint/releases) - [Changelog](https://github.com/palantir/tslint/blob/master/CHANGELOG.md) - [Commits](palantir/tslint@5.14.0...5.15.0) Signed-off-by: dependabot[bot] <support@dependabot.com> * Add I to interface
1 parent 8679697 commit 58349e7

File tree

3 files changed

+21
-11
lines changed

3 files changed

+21
-11
lines changed

package-lock.json

Lines changed: 17 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"mocha-multi-reporters": "~1.1.7",
5353
"rewire": "~4.0.1",
5454
"sinon": "~7.3.1",
55-
"tslint": "~5.14.0",
55+
"tslint": "~5.15.0",
5656
"typescript": "~3.4.3",
5757
"vsce": "~1.59.0",
5858
"vscode": "~1.1.33"

src/features/ExtensionCommands.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export interface IExtensionCommandQuickPickItem extends vscode.QuickPickItem {
2020
}
2121

2222
export const InvokeExtensionCommandRequestType =
23-
new RequestType<InvokeExtensionCommandRequestArguments, void, void, void>(
23+
new RequestType<IInvokeExtensionCommandRequestArguments, void, void, void>(
2424
"powerShell/invokeExtensionCommand");
2525

2626
export interface IEditorContext {
@@ -31,7 +31,7 @@ export interface IEditorContext {
3131
selectionRange: Range;
3232
}
3333

34-
export interface InvokeExtensionCommandRequestArguments {
34+
export interface IInvokeExtensionCommandRequestArguments {
3535
name: string;
3636
context: IEditorContext;
3737
}
@@ -285,7 +285,7 @@ export class ExtensionCommandsFeature implements IFeature {
285285
a.name.localeCompare(b.name));
286286
}
287287

288-
private showExtensionCommands(client: LanguageClient): Thenable<InvokeExtensionCommandRequestArguments> {
288+
private showExtensionCommands(client: LanguageClient): Thenable<IInvokeExtensionCommandRequestArguments> {
289289

290290
// If no extension commands are available, show a message
291291
if (this.extensionCommands.length === 0) {

0 commit comments

Comments
 (0)