Skip to content

Commit

Permalink
Add @typescript-eslint/no-implicit-any-catch rule
Browse files Browse the repository at this point in the history
  • Loading branch information
dimikot committed Oct 19, 2023
1 parent fe34799 commit 437354d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Grid.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ class Worker {
try {
await this.processMigration(chain.dest, migration);
this._succeededMigrations++;
} catch (error) {
} catch (error: unknown) {
this._errorMigrations.push({
dest: chain.dest,
migration,
Expand Down

0 comments on commit 437354d

Please sign in to comment.