@redocly/openapi-core
Version:
See https://github.com/Redocly/redocly-cli
21 lines (19 loc) • 574 B
text/typescript
import type { Arazzo1Rule } from '../../visitors';
import type { UserContext } from '../../walk';
export const NoCriteriaXpath: Arazzo1Rule = () => {
return {
CriterionObject: {
enter(criteria, { report, location }: UserContext) {
if (!criteria.type) {
return;
}
if (criteria?.type?.type === 'xpath' || criteria?.type === 'xpath') {
report({
message: 'The `xpath` type criteria is not supported by Respect.',
location: location.child(['type']),
});
}
},
},
};
};