Skip to content
This repository has been archived by the owner on Nov 26, 2024. It is now read-only.

Commit

Permalink
FUSETOOLS2-2304: Change code to match new rules
Browse files Browse the repository at this point in the history
  • Loading branch information
pospisilf committed Apr 29, 2024
1 parent 9cb8b3d commit 0edc6ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/components/workbench/Input.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { InputBox, QuickOpenBox, QuickPickItem } from "vscode-extension-tester";

// eslint-disable-next-line @typescript-eslint/no-unused-vars
interface InputTestProperties {
text?: string;
message?: string;
Expand Down
2 changes: 1 addition & 1 deletion src/conditions/Repeat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ class RepeatManager {
}

abortAll(): void {
for (const [_, repeat] of this._repeats.entries()) {
for (const [index, repeat] of this._repeats.entries()) {
repeat.abort(undefined);
this.remove(repeat);
}
Expand Down

0 comments on commit 0edc6ff

Please sign in to comment.