Skip to content

Commit

Permalink
Disable no-console lint
Browse files Browse the repository at this point in the history
  • Loading branch information
yorhodes committed Jul 27, 2023
1 parent a8e35be commit e8f3831
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion typescript/sdk/src/ism/HyperlaneIsmFactory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,8 @@ export function collectValidators(
): Set<string> {
// TODO: support address configurations in collectValidators
if (typeof config === 'string') {
console.warn('Validators not fetched from address ISM config');
// eslint-disable-next-line no-console
console.warn('WARN: Validators not fetched from address ISM config');
return new Set([]);
}

Expand Down

0 comments on commit e8f3831

Please sign in to comment.