zjc bb0557f01e 新增ruoyi框架 | 1 anno fa | |
---|---|---|
.. | ||
docs | 1 anno fa | |
rules | 1 anno fa | |
.gitignore | 1 anno fa | |
README.md | 1 anno fa | |
index.js | 1 anno fa | |
package.json | 1 anno fa | |
test.js | 1 anno fa |
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"
]
}