Skip to content

Commit

Permalink
Merge pull request errata-ai#89 from apupier/removeUnusedVariable
Browse files Browse the repository at this point in the history
Remove unused variable
  • Loading branch information
ChrisChinchilla committed Aug 9, 2022
2 parents 956ad51 + d76bc92 commit 5b9590d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"type": "git",
"url": "https://github.com/errata-ai/vale-vscode.git"
},
"version": "0.15.0",
"version": "0.15.1",
"engines": {
"vscode": "^1.69.0"
},
Expand Down
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 5b9590d

Please sign in to comment.