refactor: cleanup eslint configuration
[e-mobility-charging-stations-simulator.git] / src / utils / Configuration.ts
index d577ded4141858bbc08213615f116fd199bfc2c8..46ad889c7fca2e4fd772558c38270c3caf31e87d 100644 (file)
@@ -6,16 +6,6 @@ import { fileURLToPath } from 'node:url'
 import chalk from 'chalk'
 import { mergeDeepRight } from 'rambda'
 
-import {
-  buildPerformanceUriFilePath,
-  checkWorkerElementsPerWorker,
-  checkWorkerProcessType,
-  getDefaultPerformanceStorageUri,
-  handleFileException,
-  logPrefix
-} from './ConfigurationUtils.js'
-import { Constants } from './Constants.js'
-import { hasOwnProp, isCFEnvironment, once } from './Utils.js'
 import {
   ApplicationProtocol,
   ApplicationProtocolVersion,
@@ -37,6 +27,16 @@ import {
   DEFAULT_WORKER_START_DELAY,
   WorkerProcessType
 } from '../worker/index.js'
+import {
+  buildPerformanceUriFilePath,
+  checkWorkerElementsPerWorker,
+  checkWorkerProcessType,
+  getDefaultPerformanceStorageUri,
+  handleFileException,
+  logPrefix
+} from './ConfigurationUtils.js'
+import { Constants } from './Constants.js'
+import { hasOwnProp, isCFEnvironment, once } from './Utils.js'
 
 type ConfigurationSectionType =
   | LogConfiguration