persona-community-5/.pnpm-store/v3/files/96/3b9254695973c74f71cb6df7d7e823bc2ae8c2a499d20705f3f2ee07e15bf8bab8b02857610a905e0437ac89089dd94be15e782e746838f3627b464d8b43d8
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

19 lines
624 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PathNotIncludeQuery = void 0;
const PathNotIncludeQuery = () => {
return {
Paths: {
PathItem(_operation, { report, key }) {
if (key.toString().includes('?')) {
report({
message: `Don't put query string items in the path, they belong in parameters with \`in: query\`.`,
location: { reportOnKey: true },
});
}
},
},
};
};
exports.PathNotIncludeQuery = PathNotIncludeQuery;