ibm-openapi-validator
Version:
Configurable and extensible validator/linter for OpenAPI documents
21 lines (17 loc) • 558 B
JavaScript
/**
* Copyright 2023 IBM Corporation.
* SPDX-License-Identifier: Apache2.0
*/
const packageConfig = require('../../../package.json');
module.exports = getDefaultRulesetVersion;
/**
* Looks at the validator tool's declared dependencies and
* returns the semantic version of the IBM Cloud OpenAPI
* Ruleset package that ships by default with the current
* version of the validator tool.
*
* @returns string - the default ruleset version
*/
function getDefaultRulesetVersion() {
return packageConfig.dependencies['@ibm-cloud/openapi-ruleset'];
}