chore: migrate to eslint 9
[poolifier.git] / tests / worker-files / cluster / emptyWorker.cjs
index 9c6072af255284a9ff1debe20fb77a0d49804c13..78f534ab8a2883e8e56a45bd7cd59280df31a36e 100644 (file)
@@ -1,9 +1,12 @@
 'use strict'
 const { ClusterWorker, KillBehaviors } = require('../../../lib/index.cjs')
 
+/**
+ *
+ */
 function test () {}
 
 module.exports = new ClusterWorker(test, {
   killBehavior: KillBehaviors.HARD,
-  maxInactiveTime: 500
+  maxInactiveTime: 500,
 })