persona-community-5/.pnpm-store/v3/files/6a/9e49401f5b829ed056648ac9502b27df924321666a08639b91639c19cdeaf4a8599ff763f44cc9930a1fe6e195d4b6e71083d3847c0390b6fa4eb50ec0422b
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
607 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.NoExampleValueAndExternalValue = void 0;
const NoExampleValueAndExternalValue = () => {
return {
Example(example, { report, location }) {
if (example.value && example.externalValue) {
report({
message: 'Example object can have either `value` or `externalValue` fields.',
location: location.child(['value']).key(),
});
}
},
};
};
exports.NoExampleValueAndExternalValue = NoExampleValueAndExternalValue;