disable eslint for error dump

This commit is contained in:
Michael C 2021-10-26 20:37:49 -04:00
parent 5743ed5434
commit a9adfbc06d
No known key found for this signature in database
GPG key ID: FFB04FB3B878B7B4

View file

@ -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);
});