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

17 lines
551 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PathDeclarationMustExist = void 0;
const PathDeclarationMustExist = () => {
return {
PathItem(_path, { report, key }) {
if (key.indexOf('{}') !== -1) {
report({
message: 'Path parameter declarations must be non-empty. `{}` is invalid.',
location: { reportOnKey: true },
});
}
},
};
};
exports.PathDeclarationMustExist = PathDeclarationMustExist;