You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Der Adapter erzeugt keine Kommentare hinter parameter, bzw. benutzt bei einem try catch nicht die exception.
Dies fürt bei npm run lint (Umstellug auf eslint 9.x) zu fehlern / warnungen.
Bspw. hier:
/** * Is called when adapter shuts down - callback has to be called under any circumstances! * * @param callback */ onUnload(callback) { try { // clear all schedules for (const seconds in this.cronJobs) { schedule.cancelJob(this.cronJobs[seconds][this.jobId]); } callback(); } catch (e) { callback(); } }
The text was updated successfully, but these errors were encountered:
Der Adapter erzeugt keine Kommentare hinter parameter, bzw. benutzt bei einem try catch nicht die exception.
Dies fürt bei npm run lint (Umstellug auf eslint 9.x) zu fehlern / warnungen.
Bspw. hier:
/** * Is called when adapter shuts down - callback has to be called under any circumstances! * * @param callback */ onUnload(callback) { try { // clear all schedules for (const seconds in this.cronJobs) { schedule.cancelJob(this.cronJobs[seconds][this.jobId]); } callback(); } catch (e) { callback(); } }
The text was updated successfully, but these errors were encountered: