Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
  • Loading branch information
wwayne committed Jun 25, 2024
1 parent c2aedbd commit afb51c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clients/vscode/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ export async function activate(context: ExtensionContext) {
client = new Client(context, languageClient);
}
const config = new Config(context);
const contextVariables = new ContextVariables(client, config);
const inlineCompletionProvider = new InlineCompletionProvider(client, config);
const gitProvider = new GitProvider();

Expand All @@ -68,6 +67,7 @@ export async function activate(context: ExtensionContext) {
);

const issues = new Issues(client, config);
const contextVariables = new ContextVariables(client, config);
/* eslint-disable-next-line @typescript-eslint/no-unused-vars */ /* @ts-expect-error noUnusedLocals */
const statusBarItem = new StatusBarItem(context, client, config, issues, inlineCompletionProvider);
/* eslint-disable-next-line @typescript-eslint/no-unused-vars */ /* @ts-expect-error noUnusedLocals */
Expand Down

0 comments on commit afb51c1

Please sign in to comment.