You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
ccsens_zhengzhichuan 1431177284 租户用户体系完成 1 month ago
..
docs/rules 租户用户体系完成 1 month ago
rules 租户用户体系完成 1 month ago
.gitignore 租户用户体系完成 1 month ago
README.md 租户用户体系完成 1 month ago
index.js 租户用户体系完成 1 month ago
package.json 租户用户体系完成 1 month ago
test.js 租户用户体系完成 1 month ago

README.md

bpmnlint-plugin-local

A bpmlint plug-in based on the bpmnlint plug-in example.

About

This plugin contributes rules and configuration under the local prefix to bpmnlint.

Add Rules

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.

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:local/recommended"
  ]
}