Files
klz-cables.com/.pnpm-store/v10/files/c0/83ddb302fe6fffadd6e395f069ae0429d26163f10a5abb83528002e706673cd2594cddf65207d475c71b9d684cbd412d5be1cad7e6fb29c1f8b5987a32848d
Marc Mintel 5397309103
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
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

57 lines
1.6 KiB
Plaintext

import {JSONSchema, LinkedJSONSchema} from './types/JSONSchema'
import {traverse} from './utils'
type Rule = (schema: JSONSchema) => boolean | void
const rules = new Map<string, Rule>()
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'
})
export function validate(schema: LinkedJSONSchema, filename: string): string[] {
const errors: string[] = []
rules.forEach((rule, ruleName) => {
traverse(schema, (schema, key) => {
if (rule(schema) === false) {
errors.push(`Error at key "${key}" in file "${filename}": ${ruleName}`)
}
return schema
})
})
return errors
}