persona-community-5/.pnpm-store/v3/files/bf/210c80da752cc6ad431181f7a4a39c130106954189b4e386aef08846fda9a61e7b8b98e4d6863cfab3f87f06e0f08dac9faa4b8697db34b0095203337aa984
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
559 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.OperationSingularTag = void 0;
const OperationSingularTag = () => {
return {
Operation(operation, { report, location }) {
if (operation.tags && operation.tags.length > 1) {
report({
message: 'Operation `tags` object should have only one tag.',
location: location.child(['tags']).key(),
});
}
},
};
};
exports.OperationSingularTag = OperationSingularTag;