@forge/util

2.0.1-experimental-78908582.0.1-experimental-04cc2b9
packages/ari/bitbucket/workspace/index.js
~packages/ari/bitbucket/workspace/index.jsModified
+4−1
Index: package/packages/ari/bitbucket/workspace/index.js
===================================================================
--- package/packages/ari/bitbucket/workspace/index.js
+++ package/packages/ari/bitbucket/workspace/index.js
@@ -284,20 +284,23 @@
 var bitbucketWorkspaceAriStaticOpts = {
   qualifier: "ari",
   platformQualifier: "cloud",
   cloudId: new RegExp("^$"),
+  // eslint-disable-line no-useless-escape
   resourceOwner: BitbucketWorkspaceAriResourceOwner,
   resourceType: BitbucketWorkspaceAriResourceType,
   resourceIdSlug: "{workspaceId}",
   resourceIdSegmentFormats: {
     workspaceId: /[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}/
+    // eslint-disable-line no-useless-escape
   }
 };
 
 // src/bitbucket/workspace/index.ts
 var BitbucketWorkspaceAri = class _BitbucketWorkspaceAri extends RegisteredAri {
   constructor(opts) {
-    super(opts), this._workspaceId = opts.resourceIdSegmentValues.workspaceId;
+    super(opts);
+    this._workspaceId = opts.resourceIdSegmentValues.workspaceId;
   }
   get workspaceId() {
     return this._workspaceId;
   }