chore: migrate to eslint 9
[poolifier.git] / benchmarks / internal / cluster-worker.cjs
index 5f59d49b8971cd4d692fe3e01a4599ba13a03d66..40d614c7364fe17feaa41bec8c3742842f450832 100644 (file)
@@ -8,6 +8,7 @@ const taskFunction = data => {
   data.function = data.function || TaskFunctions.factorial
   data.debug = data.debug || false
   const res = executeTaskFunction(data)
+  // eslint-disable-next-line @typescript-eslint/no-unused-expressions
   data.debug === true && console.debug(`This is the main thread ${isPrimary}`)
   return res
 }