21 lines
331 B
JavaScript
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
|
||
|
};
|
||
|
};
|