refactor: cleanup eslint configuration
[poolifier.git] / src / worker / cluster-worker.ts
index eedf13bd9265cb30b6d7cd689c42e2c517367acd..325b7a410b6cb7686ebee51f1d37b06043622fad 100644 (file)
@@ -1,8 +1,9 @@
 import cluster, { type Worker } from 'node:cluster'
+
 import type { MessageValue } from '../utility-types.js'
 import { AbstractWorker } from './abstract-worker.js'
-import type { WorkerOptions } from './worker-options.js'
 import type { TaskFunction, TaskFunctions } from './task-functions.js'
+import type { WorkerOptions } from './worker-options.js'
 
 /**
  * A cluster worker used by a poolifier `ClusterPool`.