From 2f0a9148387b66d75b9ee3856e68f0ed3aa149de Mon Sep 17 00:00:00 2001 From: Fabio Berger Date: Fri, 13 Jul 2018 19:53:49 +0200 Subject: Fix linter --- packages/utils/src/fetchAsync.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/utils/src/fetchAsync.ts b/packages/utils/src/fetchAsync.ts index 6ae2ba1a4..c02e5baba 100644 --- a/packages/utils/src/fetchAsync.ts +++ b/packages/utils/src/fetchAsync.ts @@ -7,7 +7,9 @@ export const fetchAsync = async ( timeoutMs: number = 20000, ): Promise => { if (options.signal || (options as any).timeout) { - throw new Error('Cannot call fetchAsync with options.signal or options.timeout. To set a timeout, please use the supplied "timeoutMs" parameter.'); + throw new Error( + 'Cannot call fetchAsync with options.signal or options.timeout. To set a timeout, please use the supplied "timeoutMs" parameter.', + ); } let optionsWithAbortParam; if (!isNode) { -- cgit