Small cleanups
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Fri, 19 Mar 2021 20:52:56 +0000 (21:52 +0100)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Fri, 19 Mar 2021 20:52:56 +0000 (21:52 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
src/charging-station/Bootstrap.ts
src/charging-station/StationWorker.ts
src/types/ChargingStationConfiguration.ts

index f47a879bd4701cdbcd99fa60e22c0da6fc8fbc69..503c6bd2401f3a530a0e02fa55bc3239d1d3ade6 100644 (file)
@@ -44,7 +44,6 @@ export default class Bootstrap {
                 numStationsTotal++;
               }
             } catch (error) {
-            // eslint-disable-next-line no-console
               console.error('Charging station start with template file ' + stationURL.file + ' error ', error);
             }
           }
@@ -58,7 +57,6 @@ export default class Bootstrap {
         }
         this.started = true;
       } catch (error) {
-      // eslint-disable-next-line no-console
         console.error('Bootstrap start error ', error);
       }
     }
index 45449c1b5bfc76bbad8757af5aaa9bcf52a5b7aa..bb2db88a4c749acafee441291b05dc8ef4fdf36e 100644 (file)
@@ -27,6 +27,6 @@ function addMessageListener(): void {
 }
 
 function startChargingStation(data: StationWorkerData): void {
-  const station = new ChargingStation(data.index , data.templateFile);
+  const station = new ChargingStation(data.index, data.templateFile);
   station.start();
 }
index 7e0219fbf63b7df71db84c7c1c53cfec3b1d2a99..fca2ec4a7ae2e2a21f516fea8a811275fd008510 100644 (file)
@@ -1,6 +1,6 @@
 import { OCPPConfigurationKey } from './ocpp/Configuration';
 
-export interface ConfigurationKey extends OCPPConfigurationKey{
+export interface ConfigurationKey extends OCPPConfigurationKey {
   visible?: boolean;
   reboot?: boolean;
 }