Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
51 lines
1.7 KiB
Plaintext
51 lines
1.7 KiB
Plaintext
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.validate = void 0;
|
|
const utils_1 = require("./utils");
|
|
const rules = new Map();
|
|
rules.set('Enum members and tsEnumNames must be of the same length', schema => {
|
|
if (schema.enum && schema.tsEnumNames && schema.enum.length !== schema.tsEnumNames.length) {
|
|
return false;
|
|
}
|
|
});
|
|
rules.set('tsEnumNames must be an array of strings', schema => {
|
|
if (schema.tsEnumNames && schema.tsEnumNames.some(_ => typeof _ !== 'string')) {
|
|
return false;
|
|
}
|
|
});
|
|
rules.set('When both maxItems and minItems are present, maxItems >= minItems', schema => {
|
|
const { maxItems, minItems } = schema;
|
|
if (typeof maxItems === 'number' && typeof minItems === 'number') {
|
|
return maxItems >= minItems;
|
|
}
|
|
});
|
|
rules.set('When maxItems exists, maxItems >= 0', schema => {
|
|
const { maxItems } = schema;
|
|
if (typeof maxItems === 'number') {
|
|
return maxItems >= 0;
|
|
}
|
|
});
|
|
rules.set('When minItems exists, minItems >= 0', schema => {
|
|
const { minItems } = schema;
|
|
if (typeof minItems === 'number') {
|
|
return minItems >= 0;
|
|
}
|
|
});
|
|
rules.set('deprecated must be a boolean', schema => {
|
|
const typeOfDeprecated = typeof schema.deprecated;
|
|
return typeOfDeprecated === 'boolean' || typeOfDeprecated === 'undefined';
|
|
});
|
|
function validate(schema, filename) {
|
|
const errors = [];
|
|
rules.forEach((rule, ruleName) => {
|
|
(0, utils_1.traverse)(schema, (schema, key) => {
|
|
if (rule(schema) === false) {
|
|
errors.push(`Error at key "${key}" in file "${filename}": ${ruleName}`);
|
|
}
|
|
return schema;
|
|
});
|
|
});
|
|
return errors;
|
|
}
|
|
exports.validate = validate;
|
|
//# sourceMappingURL=validator.js.map |