Skip to content

Commit

Permalink
ci: test failing linter in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
LeweyM committed May 17, 2024
1 parent 6f8ae71 commit 0aba851
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/db.js
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ class LimitDBRedis extends EventEmitter {
takeElevated(params, callback) {
const valError = validateERLParams(params.elevated_limits);
if (valError) {
return callback(valError);
return callback(valError)

Check failure on line 292 in lib/db.js

View workflow job for this annotation

GitHub Actions / lint

Missing semicolon
}
const erlParams = utils.getERLParams(params.elevated_limits);

Expand Down

0 comments on commit 0aba851

Please sign in to comment.