Skip to content

Commit c352bfc

Browse files
committed
Run "npm run format"
1 parent 5afc46a commit c352bfc

3 files changed

Lines changed: 3 additions & 7 deletions

File tree

extensions/ql-vscode/src/common/vscode/abstract-webview-view-provider.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ import type { DeepReadonly } from "../readonly";
99
export abstract class AbstractWebviewViewProvider<
1010
ToMessage extends WebviewMessage,
1111
FromMessage extends WebviewMessage,
12-
> implements WebviewViewProvider
13-
{
12+
> implements WebviewViewProvider {
1413
protected webviewView: WebviewView | undefined = undefined;
1514
private disposables: Disposable[] = [];
1615

extensions/ql-vscode/src/debugger/debug-configuration.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,7 @@ function makeArray<T extends NotArray>(value: T | T[]): T[] {
5151
/**
5252
* Implementation of `DebugConfigurationProvider` for CodeQL.
5353
*/
54-
export class QLDebugConfigurationProvider
55-
implements DebugConfigurationProvider
56-
{
54+
export class QLDebugConfigurationProvider implements DebugConfigurationProvider {
5755
public constructor(private readonly localQueries: LocalQueries) {}
5856

5957
public resolveDebugConfiguration(

extensions/ql-vscode/src/packages/commands/CommandManager.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ export type CommandFunction = (...args: any[]) => Promise<unknown>;
2222
export class CommandManager<
2323
Commands extends Record<string, CommandFunction>,
2424
CommandName extends keyof Commands & string = keyof Commands & string,
25-
> implements Disposable
26-
{
25+
> implements Disposable {
2726
private commands: Disposable[] = [];
2827

2928
constructor(

0 commit comments

Comments
 (0)