From 4a36d78f6474835df1d3cd358145e74e38e3ea7a Mon Sep 17 00:00:00 2001 From: Gar Date: Wed, 29 May 2024 11:07:23 -0700 Subject: [PATCH] chore: fix linting in arborist debugger --- workspaces/arborist/lib/debug.js | 1 + 1 file changed, 1 insertion(+) diff --git a/workspaces/arborist/lib/debug.js b/workspaces/arborist/lib/debug.js index 81fd34353c378..d5197b46ef09a 100644 --- a/workspaces/arborist/lib/debug.js +++ b/workspaces/arborist/lib/debug.js @@ -27,5 +27,6 @@ module.exports.log = (...msg) => module.exports(() => { const { format } = require('node:util') const prefix = `\n${process.pid} ${red(format(msg.shift()))} ` msg = (prefix + format(...msg).trim().split('\n').join(prefix)).trim() + /* eslint-disable-next-line no-console */ console.error(msg) })