123456789101112131415161718192021 |
- const {
- is
- } = require('bpmnlint-utils');
- /**
- * Rule that reports missing targetNamespace on bpmn:Definitions.
- */
- module.exports = function() {
- function check(node, reporter) {
- if (is(node, 'bpmn:Definitions') && !node.targetNamespace) {
- reporter.report(node.id, 'Element is missing targetNamespace');
- }
- }
- return {
- check: check
- };
- };
|