zxf-pm/zxf-ui/bpmnlint-plugin-local/rules/no-manual-task.js

21 lines
331 B
JavaScript

const {
is
} = require('bpmnlint-utils');
/**
* Rule that reports manual tasks being used.
*/
module.exports = function() {
function check(node, reporter) {
if (is(node, 'bpmn:ManualTask')) {
reporter.report(node.id, 'Element has disallowed type bpmn:ManualTask');
}
}
return {
check: check
};
};