@forge/lint

6.0.3-next.186.0.3-next.18-experimental-6320d72
out/lint/linters/manifest-linter/abstract-manifest-linter.js
~out/lint/linters/manifest-linter/abstract-manifest-linter.jsModified
+6−1
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,10 +44,15 @@
             .build();
         return Promise.resolve();
     }
     async getOptions() {
+        const [deprecatedRuntimes, skipSchemaValidation] = await Promise.all([
+            this.statsigService.getDeprecatedRuntimes(),
+            this.statsigService.isShipyardManifestSchemaValidationEnabled()
+        ]);
         const options = {
-            deprecatedRuntimes: await this.statsigService.getDeprecatedRuntimes()
+            deprecatedRuntimes,
+            skipSchemaValidation
         };
         return options;
     }
     getFixer() {