@forge/util

2.0.1-experimental-78908582.0.1-experimental-04cc2b9
packages/ari/trello/planner-calendar/index.js
~packages/ari/trello/planner-calendar/index.jsModified
+5−1
Index: package/packages/ari/trello/planner-calendar/index.js
===================================================================
--- package/packages/ari/trello/planner-calendar/index.js
+++ package/packages/ari/trello/planner-calendar/index.js
@@ -284,21 +284,25 @@
 var trelloPlannerCalendarAriStaticOpts = {
   qualifier: "ari",
   platformQualifier: "cloud",
   cloudId: new RegExp("^$"),
+  // eslint-disable-line no-useless-escape
   resourceOwner: TrelloPlannerCalendarAriResourceOwner,
   resourceType: TrelloPlannerCalendarAriResourceType,
   resourceIdSlug: "workspace/{workspaceId}/{plannerCalendarId}",
   resourceIdSegmentFormats: {
     workspaceId: /[a-zA-Z0-9\-_.]*/,
+    // eslint-disable-line no-useless-escape
     plannerCalendarId: /[a-zA-Z0-9\-_.]*/
+    // eslint-disable-line no-useless-escape
   }
 };
 
 // src/trello/planner-calendar/index.ts
 var TrelloPlannerCalendarAri = class _TrelloPlannerCalendarAri extends RegisteredAri {
   constructor(opts) {
-    super(opts), this._workspaceId = opts.resourceIdSegmentValues.workspaceId, this._plannerCalendarId = opts.resourceIdSegmentValues.plannerCalendarId;
+    super(opts);
+    this._workspaceId = opts.resourceIdSegmentValues.workspaceId, this._plannerCalendarId = opts.resourceIdSegmentValues.plannerCalendarId;
   }
   get workspaceId() {
     return this._workspaceId;
   }