persona-community-5/.pnpm-store/v3/files/33/ad4e793d0449e37fee3f00708fc889b7d7dc408b3b6efcbe3e3b5d239faab826a5ed248913af6c6715e38ac49133828555b2f55b03aa0b30a2596fc5ccfff0
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

23 lines
794 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ParameterDescription = void 0;
const ParameterDescription = () => {
return {
Parameter(parameter, { report, location }) {
if (parameter.description === undefined) {
report({
message: 'Parameter object description must be present.',
location: { reportOnKey: true },
});
}
else if (!parameter.description) {
report({
message: 'Parameter object description must be non-empty string.',
location: location.child(['description']),
});
}
},
};
};
exports.ParameterDescription = ParameterDescription;