persona-community-5/.pnpm-store/v3/files/f7/5a003e43f647e49f5040f090fb0ac4a6d92a10d38b2faf97ee5f49a24b3f1d1929a6a047c428f31c5af8fa72ccbda6e5d690e504a6203e87e28d3578f3a26f
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

12 lines
279 B
Plaintext

import { validateDefinedAndNonEmpty } from '../utils';
import type { Oas3Rule, Oas2Rule } from '../../visitors';
export const TagDescription: Oas3Rule | Oas2Rule = () => {
return {
Tag(tag, ctx) {
validateDefinedAndNonEmpty('description', tag, ctx);
},
};
};