refactor: cleanup eslint configuration
[e-mobility-charging-stations-simulator.git] / src / charging-station / Helpers.ts
index 9c790268b70100f2b749cf3b04d4d4372f429906..726a0ab3a23f4fabbd5291aca49cc7ebc059c8b6 100644 (file)
@@ -6,13 +6,13 @@ import { fileURLToPath } from 'node:url'
 
 import chalk from 'chalk'
 import {
-  type Interval,
   addDays,
   addSeconds,
   addWeeks,
   differenceInDays,
   differenceInSeconds,
   differenceInWeeks,
+  type Interval,
   isAfter,
   isBefore,
   isDate,
@@ -22,8 +22,6 @@ import {
 } from 'date-fns'
 import { maxTime } from 'date-fns/constants'
 
-import type { ChargingStation } from './ChargingStation.js'
-import { getConfigurationKey } from './ConfigurationKeyUtils.js'
 import { BaseError } from '../exception/index.js'
 import {
   AmpereUnits,
@@ -56,11 +54,11 @@ import {
 } from '../types/index.js'
 import {
   ACElectricUtils,
-  Constants,
-  DCElectricUtils,
   clone,
+  Constants,
   convertToDate,
   convertToInt,
+  DCElectricUtils,
   isArraySorted,
   isEmptyObject,
   isEmptyString,
@@ -70,6 +68,8 @@ import {
   logger,
   secureRandom
 } from '../utils/index.js'
+import type { ChargingStation } from './ChargingStation.js'
+import { getConfigurationKey } from './ConfigurationKeyUtils.js'
 
 const moduleName = 'Helpers'