@forge/util

2.0.12.0.1-experimental-7890858
packages/ari/trello/list/index.js
~packages/ari/trello/list/index.jsModified
+1−5
Index: package/packages/ari/trello/list/index.js
===================================================================
--- package/packages/ari/trello/list/index.js
+++ package/packages/ari/trello/list/index.js
@@ -284,25 +284,21 @@
 var trelloListAriStaticOpts = {
   qualifier: "ari",
   platformQualifier: "cloud",
   cloudId: new RegExp("^$"),
-  // eslint-disable-line no-useless-escape
   resourceOwner: TrelloListAriResourceOwner,
   resourceType: TrelloListAriResourceType,
   resourceIdSlug: "workspace/{workspaceId}/{listId}",
   resourceIdSegmentFormats: {
     workspaceId: /[a-zA-Z0-9\-_.]*/,
-    // eslint-disable-line no-useless-escape
     listId: /[a-zA-Z0-9\-_.]*/
-    // eslint-disable-line no-useless-escape
   }
 };
 
 // src/trello/list/index.ts
 var TrelloListAri = class _TrelloListAri extends RegisteredAri {
   constructor(opts) {
-    super(opts);
-    this._workspaceId = opts.resourceIdSegmentValues.workspaceId, this._listId = opts.resourceIdSegmentValues.listId;
+    super(opts), this._workspaceId = opts.resourceIdSegmentValues.workspaceId, this._listId = opts.resourceIdSegmentValues.listId;
   }
   get workspaceId() {
     return this._workspaceId;
   }