test-plugin-sample
v0.0.0
Published
The bpmnlint test-plugin1 plug-in
Readme
bpmnlint-plugin-test-plugin1
A bpmlint plug-in based on the bpmnlint plug-in example.
About
This plugin contributes rules and configuration under the test-plugin1 prefix to bpmnlint.
Add Rules
The ./rules folder contains rules that are made available via
this plug-in. Configure them with the test-plugin1 prefix in your .bpmnlintrc:
{
"rules": {
"test-plugin1/no-manual-task": "warn"
}
}Checkout ./test.js to learn how to test your rules.
Add Configuration
As part of the ./index.js the plug-in exposes configurations
to extend from using extends in the bpmnlint configuration:
{
"extends": [
"bpmnlint:recommended",
"plugin:test-plugin1/recommended"
]
}