综合办公系统
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
lamphua 9675596be6 oa工作流初始化 il y a 1 an
..
docs/rules oa工作流初始化 il y a 1 an
rules oa工作流初始化 il y a 1 an
.gitignore oa工作流初始化 il y a 1 an
README.md oa工作流初始化 il y a 1 an
index.js oa工作流初始化 il y a 1 an
package.json oa工作流初始化 il y a 1 an
test.js oa工作流初始化 il y a 1 an

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"
  ]
}