@redocly/openapi-core
Version:
See https://github.com/Redocly/redocly-cli
16 lines (14 loc) • 439 B
text/typescript
import { Async2Rule } from '../../visitors';
import { UserContext } from '../../walk';
export const NoChannelTrailingSlash: Async2Rule = () => {
return {
Channel(_channel: any, { report, key, location }: UserContext) {
if ((key as string).endsWith('/') && key !== '/') {
report({
message: `\`${key}\` should not have a trailing slash.`,
location: location.key(),
});
}
},
};
};