refactor: cleanup eslint configuration
[e-mobility-charging-stations-simulator.git] / src / charging-station / ChargingStationWorker.ts
index 2623f1272d2f19142715f12bfaadaff469294ddb..35a7e534353f5ffaafbae6daba93948e9803d407 100644 (file)
@@ -4,7 +4,6 @@ import { parentPort } from 'node:worker_threads'
 
 import { ThreadWorker } from 'poolifier'
 
-import { ChargingStation } from './ChargingStation.js'
 import { BaseError } from '../exception/index.js'
 import type {
   ChargingStationData,
@@ -12,8 +11,9 @@ import type {
   ChargingStationWorkerEventError,
   ChargingStationWorkerMessage
 } from '../types/index.js'
-import { Configuration, buildChargingStationDataPayload } from '../utils/index.js'
+import { buildChargingStationDataPayload, Configuration } from '../utils/index.js'
 import { type WorkerMessage, WorkerMessageEvents } from '../worker/index.js'
+import { ChargingStation } from './ChargingStation.js'
 
 export let chargingStationWorker: object
 if (Configuration.workerPoolInUse()) {