增加bpmnlint自定义校验规则示例

This commit is contained in:
xlsea
2023-03-10 09:20:35 +08:00
parent ff2ad94368
commit 912e07625f
12 changed files with 227 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
module.exports = {
configs: {
recommended: {
rules: {
'target-namespace': 'error'
}
},
all: {
rules: {
'target-namespace': 'warn',
'no-manual-task': 'warn'
}
}
}
}