Skip to content

Commit

Permalink
disable no unused rule for one line
Browse files Browse the repository at this point in the history
  • Loading branch information
Kr0nox committed Dec 7, 2024
1 parent c9c9c5c commit 0ec99b0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion report-viewer/src/model/factories/BaseFactory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,10 @@ export class BaseFactory {
try {
await this.getLocalFile(this.zipFileName)
return true
/* eslint-disable @typescript-eslint/no-unused-vars */
} catch (e) {
void e
return false
}
/* eslint-enable @typescript-eslint/no-unused-vars */
}
}

0 comments on commit 0ec99b0

Please sign in to comment.