From a9adfbc06dafee579411c2358894ba5f6a27f81e Mon Sep 17 00:00:00 2001 From: Michael C Date: Tue, 26 Oct 2021 20:37:49 -0400 Subject: [PATCH] disable eslint for error dump --- src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.ts b/src/index.ts index d945178..e58aacd 100644 --- a/src/index.ts +++ b/src/index.ts @@ -7,6 +7,7 @@ import { getCommit } from "./utils/getCommit"; async function init() { process.on("unhandledRejection", (error: any) => { + // eslint-disable-next-line no-console console.dir(error?.stack); process.exit(1); });