style(simulator): align case on enum key/value
authorJérôme Benoit <jerome.benoit@sap.com>
Sat, 4 Mar 2023 14:32:32 +0000 (15:32 +0100)
committerJérôme Benoit <jerome.benoit@sap.com>
Sat, 4 Mar 2023 14:32:32 +0000 (15:32 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
src/charging-station/SharedLRUCache.ts

index 49c06e90e53cb825433754b3e4a384df956631c4..3ee8cd7f7fa3a054ea5ca0410ee802d9702ad8f1 100644 (file)
@@ -5,8 +5,8 @@ import type { ChargingStationConfiguration, ChargingStationTemplate } from '../t
 import { Utils } from '../utils';
 
 enum CacheType {
-  CHARGING_STATION_TEMPLATE = 'chargingStationTemplate',
-  CHARGING_STATION_CONFIGURATION = 'chargingStationConfiguration',
+  chargingStationTemplate = 'chargingStationTemplate',
+  chargingStationConfiguration = 'chargingStationConfiguration',
 }
 
 type CacheableType = ChargingStationTemplate | ChargingStationConfiguration;
@@ -82,11 +82,11 @@ export class SharedLRUCache {
   }
 
   private getChargingStationConfigurationKey(hash: string): string {
-    return `${CacheType.CHARGING_STATION_CONFIGURATION}${hash}`;
+    return `${CacheType.chargingStationConfiguration}${hash}`;
   }
 
   private getChargingStationTemplateKey(hash: string): string {
-    return `${CacheType.CHARGING_STATION_TEMPLATE}${hash}`;
+    return `${CacheType.chargingStationTemplate}${hash}`;
   }
 
   private has(key: string): boolean {