Skip to content

Commit

Permalink
More Corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelVerdon committed Feb 26, 2025
1 parent e876517 commit 8b8e15d
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions packages/database/lib/modular/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,11 +121,7 @@ export function increment(delta) {
}

export function enableLogging(enabled, persistent) {

Check failure on line 123 in packages/database/lib/modular/index.js

View workflow job for this annotation

GitHub Actions / Lint

'enabled' is defined but never used. Allowed unused args must match /^_/u

Check failure on line 123 in packages/database/lib/modular/index.js

View workflow job for this annotation

GitHub Actions / Lint

'persistent' is defined but never used. Allowed unused args must match /^_/u

Check failure on line 123 in packages/database/lib/modular/index.js

View workflow job for this annotation

GitHub Actions / Lint

'enabled' is defined but never used. Allowed unused args must match /^_/u

Check failure on line 123 in packages/database/lib/modular/index.js

View workflow job for this annotation

GitHub Actions / Lint

'persistent' is defined but never used. Allowed unused args must match /^_/u
throw new Error("enableLogging() is not implemented");
}

export function off(query, eventType) {
throw new Error("off() is not implemented");
throw new Error('enableLogging() is not implemented');

Check warning on line 124 in packages/database/lib/modular/index.js

View check run for this annotation

Codecov / codecov/patch

packages/database/lib/modular/index.js#L123-L124

Added lines #L123 - L124 were not covered by tests
}

export * from './query';
Expand Down

0 comments on commit 8b8e15d

Please sign in to comment.