Skip to content
This repository has been archived by the owner on Apr 14, 2023. It is now read-only.

Commit

Permalink
Merge pull request #89 from apupier/removeUnusedVariable
Browse files Browse the repository at this point in the history
Remove unused variable
  • Loading branch information
ChrisChinchilla authored Aug 9, 2022
2 parents 956ad51 + d76bc92 commit ddfe83a
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/features/vsProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ export default class ValeProvider implements vscode.CodeActionProvider {
private logger!: vscode.OutputChannel;

private async doVale(textDocument: vscode.TextDocument) {
const configuration = vscode.workspace.getConfiguration();
if (!utils.isElligibleDocument(textDocument)) {
return;
}
Expand Down Expand Up @@ -219,7 +218,6 @@ export default class ValeProvider implements vscode.CodeActionProvider {
public async activate(subscriptions: vscode.Disposable[]) {
this.logger = vscode.window.createOutputChannel("Vale");

const configuration = vscode.workspace.getConfiguration();
this.command = vscode.commands.registerCommand(
ValeProvider.commandId,
this.runCodeAction,
Expand Down

0 comments on commit ddfe83a

Please sign in to comment.