18 lines
484 B
Plaintext
18 lines
484 B
Plaintext
import type { Arazzo1Rule } from '../../visitors';
|
|
import type { UserContext } from '../../walk';
|
|
|
|
export const SourceDescriptionsNotEmpty: Arazzo1Rule = () => {
|
|
return {
|
|
SourceDescriptions: {
|
|
enter(sourceDescriptions, { report, location }: UserContext) {
|
|
if (!sourceDescriptions?.length) {
|
|
report({
|
|
message: 'The `sourceDescriptions` list must have at least one entry.',
|
|
location,
|
|
});
|
|
}
|
|
},
|
|
},
|
|
};
|
|
};
|