chore: switch coding style to JS standard
[e-mobility-charging-stations-simulator.git] / src / charging-station / ocpp / 2.0 / OCPP20ServiceUtils.ts
index eb4d099b2e20586a5d847bdb63d2ebaf75f26f5b..43d3e2f67a88c28f00220debc249fe97e25d2d40 100644 (file)
@@ -1,21 +1,21 @@
 // Partial Copyright Jerome Benoit. 2021-2023. All Rights Reserved.
 
-import type { JSONSchemaType } from 'ajv';
+import type { JSONSchemaType } from 'ajv'
 
-import { type JsonType, OCPPVersion } from '../../../types/index.js';
-import { OCPPServiceUtils } from '../OCPPServiceUtils.js';
+import { type JsonType, OCPPVersion } from '../../../types/index.js'
+import { OCPPServiceUtils } from '../OCPPServiceUtils.js'
 
 export class OCPP20ServiceUtils extends OCPPServiceUtils {
   public static parseJsonSchemaFile<T extends JsonType>(
     relativePath: string,
     moduleName?: string,
-    methodName?: string,
+    methodName?: string
   ): JSONSchemaType<T> {
     return super.parseJsonSchemaFile<T>(
       relativePath,
       OCPPVersion.VERSION_20,
       moduleName,
-      methodName,
-    );
+      methodName
+    )
   }
 }