From 2fb21444311086adb561de0eed68ccff155fd444 Mon Sep 17 00:00:00 2001 From: Luke Karrys Date: Fri, 3 May 2024 14:25:15 -0700 Subject: [PATCH] fix(linting): no-unused-vars --- lib/debug.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/debug.js b/lib/debug.js index e62198e..544ab38 100644 --- a/lib/debug.js +++ b/lib/debug.js @@ -1,4 +1,5 @@ /* istanbul ignore next */ module.exports = process.env.DEBUG_NOPT || process.env.NOPT_DEBUG + // eslint-disable-next-line no-console ? (...a) => console.error(...a) : () => {}