zjc bb0557f01e 新增ruoyi框架 | hai 1 ano | |
---|---|---|
.. | ||
docs | hai 1 ano | |
rules | hai 1 ano | |
.gitignore | hai 1 ano | |
README.md | hai 1 ano | |
index.js | hai 1 ano | |
package.json | hai 1 ano | |
test.js | hai 1 ano |
A bpmlint plug-in based on the bpmnlint plug-in example.
This plugin contributes rules and configuration under the local
prefix to bpmnlint.
The ./rules
folder contains rules that are made available via
this plug-in. Configure them with the local
prefix in your .bpmnlintrc
:
{
"rules": {
"local/no-manual-task": "warn"
}
}
Checkout ./test.js
to learn how to test your rules.
As part of the ./index.js
the plug-in exposes configurations
to extend from using extends
in the bpmnlint configuration:
{
"extends": [
"bpmnlint:recommended",
"plugin:local/recommended"
]
}