@forge/lint

6.0.3-next.18-experimental-cf2ad4c6.0.3-next.19
out/lint/linters/manifest-linter/abstract-manifest-linter.js
~out/lint/linters/manifest-linter/abstract-manifest-linter.jsModified
+1−6
Index: package/out/lint/linters/manifest-linter/abstract-manifest-linter.js
===================================================================
--- package/out/lint/linters/manifest-linter/abstract-manifest-linter.js
+++ package/out/lint/linters/manifest-linter/abstract-manifest-linter.js
@@ -44,15 +44,10 @@
             .build();
         return Promise.resolve();
     }
     async getOptions() {
-        const [deprecatedRuntimes, skipSchemaValidation] = await Promise.all([
-            this.statsigService.getDeprecatedRuntimes(),
-            this.statsigService.isShipyardManifestSchemaValidationEnabled()
-        ]);
         const options = {
-            deprecatedRuntimes,
-            skipSchemaValidation
+            deprecatedRuntimes: await this.statsigService.getDeprecatedRuntimes()
         };
         return options;
     }
     getFixer() {